Re: [PHP] POST and trouble.

2001-10-23 Thread Alex Marín Fica \(Desarrollo\)
Try using urlencode function to make it usable on url, so char symbols like or / or . (dot) will be returned by this funtion like a % with the hex ascii code near by... I hope this helps... - en español... transandino compañero phpero Intenta codificando para url, empleando la función

Re: [PHP] help again

2001-08-31 Thread Alex Marín Fica \(Desarrollo\)
echo sends a literal string to the output and eventually evaluates variables that are found inside, so it seems that your instruction should be: echo h1{$beer}'s taste is great/h1; Why it worked with h1 outside, I guess because it was closing some former tag in your code or something like