>The following code shows exactly what I want in IE5 but does not in
>Netscape. I have tried various combinations of slashes and quotes but can't
>get it to display properly. Can anyone show me the changes I need to make.
HTML entities begin with a "&" (ampersand) and end with a ";" (semicolon
> I need insert some variable ito log.txt file but every item (variable) must
> be on other line
> how to do this ?
If I am understanding your question correctly, you need to add a newline
character (\n) at then end every line. Like so:
$fp1 = Fopen("D:\\log.txt","a+");
fwrite($fp1,"$start\
What exactly are you looking for? I think that syntax coloring is
automatic for any file with a .php file extension since Homesite 4.
If you are looking for the PHP Manual formatted for HS or an expression
builder, check out:
http://www.wilk4.com/asp4hs/php4hs.htm
HTH
-jeff
At 09:50 19/02/02
Hey Bas,
BV>But i would prefer something like
BV>$temp=make_$wat($this);
I think you might want something along these lines:
eval("make_$wat($this);");
HTH
-jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAI
>When a user clicks upon a delete link that deletes a record from a
>database, I would like to be able to give them the option to OK or Cancel
>this action.
>
>I have tried coding the browsers built in confirm box (I can bring up
>this) but am unable to combine it with php or a combination of
>Do you know where I can find a recent and objective study comparing both
>with PHP to connect to it.
http://phpbuilder.com/columns/tim2705.php3
HTH
-jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
>The system have to send mail automatically to the username stored in
>mysql table.I am having the details of usermailid,date.By using php script
>how do i go about with this
To send the mail, use the mail function:
http://www.php.net/manual/en/function.mail.php
--
PHP General Mailing Lis
>How can i delete a file from the server in PHP
unlink("/file/path/filename.txt");
http://www.php.net/manual/en/function.unlink.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the lis
8 matches
Mail list logo