I've got a little problem: I want to make an Input in two textareas, named newstitel and newstext. Then these 2 Variables should be put in a table with first row including Newstitel and the second row newstext. Whenever I try to write these 2 Variables in my news.php, only the first line of the Table appears, but without the newstitel. What am I doing wrong? Isn't it possible to use a html Variable into a php-script?
Hi,
I dont quite understand your question, but I would guess something is wrong in your HTML code ?
Something like this should work:
<table> <tr> <td><? echo $newstitle ?></td> </tr> <tr> <td><? echo $newstext</td> </tr> </table>
Good luck