View Single Post
Re: PHP not working so good for me
Old
  (#2)
jeefo
путинхуйлоебаное
 
jeefo's Avatar
 
Status: Offline
Posts: 453
Join Date: Nov 2005
Location: Saint-Petersburg
Default Re: PHP not working so good for me - 21-03-2006

You can solve this problem in two ways. 1. Use double quotes with 'echo' function
Code:
echo "blablabla $copy blablabla";
. 2. Or if you want to use single-quotes use this one
Code:
echo 'blablabla'. $copy .'blablabla';
.
  
Reply With Quote