i wanna put the text that user entered in textbox in a variable i don't want to send it to another page. how can i do it! in asp.net it would be :
string a = textbox1.text;
how could i do it using php?
html :
<html>
<body>
<input type="text" id="news">
</body>
</html>
php variable :
$news_text;
i wanna put text that user entered into $news_text please help me!