sir : Do you have a problem in your own web page or what?
This mistake frequently occurs when a particular quote is present in a
string delimited by the same kind of quotes, for example:
<?
echo 'apple API';
?>
In such situations the PHP interpreter does not know when he
starts and ends where the chain. The solution is to "escape" quotes
problem by being preceded by a backslash (backslash):
<?
echo 'apple d \' api ';
?>
In the same way for the double quotes
<?
echo "said Jacques \" Hello! \ "";
?>
The PHP parser generally indicates the line where the error occurred.
This error may also be due to the oblivion of a semi-colon (;) at the end of the investigation into the previous line ...
please dont forget rating this comment.
if this not helping u tell me so i can help u
I want to execute java command for a software which is stored on my web server with the help of...
(More)
I want to execute java command for a software which is stored on my web server with the help of command line but this should be executed through php... I have a code as follows,but its not working ,i need to integrate all exec commands. $cmd='cd C:Program FilesApache GroupApache2htdocsmainsphinxsphinx4-1.0beta-binsphinx4-1.0betain'; exec('C:WINNTsystem32cmd.exe'); exec($cmd); exec("java -mx312m -jar wav2text.jar voice_rec.wav>6.txt"); Reply fast>.
Hi there, I am using PHP5, where i need to mail with attachement. exact thing is, am getting the...
(More)
Hi there, I am using PHP5, where i need to mail with attachement. exact thing is, am getting the file in one page through basic input tag with file attribute. in next page am not getting the file path in order to mail it. Please help me.