manalnor Posted October 28, 2011 Share Posted October 28, 2011 Hello dear friends, If i've database table (my_table) with one field (text) and i've created form with textarea <form action="#"> <textarea name="text" id="text"></textarea> <input type="submit" name="Submit" value="Submit"> </form> I can add any text inside it and save it in my database table but when i add html codes it also store it perfect but only 2 codes is not the closing of form and textarea </form> and </textarea> it not stored and automatically not saved Why ! i mean if i paste inside the above form - textarea the following code for example <form> <textarea>blah</textarea> </form> it will store it as <form> <textarea>blah and will not store </form> and </textarea> how then i can add html codes with textarea and form inside it without conflict thanks Quote Link to comment https://forums.phpfreaks.com/topic/249985-store-textarea-html-code-in-php/ Share on other sites More sharing options...
PFMaBiSmAd Posted October 28, 2011 Share Posted October 28, 2011 If you do a 'view source' in your browser of the page where you displaying the result, does it have all the HTML that you entered in the form? Quote Link to comment https://forums.phpfreaks.com/topic/249985-store-textarea-html-code-in-php/#findComment-1283016 Share on other sites More sharing options...
manalnor Posted October 28, 2011 Author Share Posted October 28, 2011 If you do a 'view source' in your browser of the page where you displaying the result, does it have all the HTML that you entered in the form? view source gives only <form> <textarea>blah so missing </form> and </textarea> Quote Link to comment https://forums.phpfreaks.com/topic/249985-store-textarea-html-code-in-php/#findComment-1283024 Share on other sites More sharing options...
PFMaBiSmAd Posted October 28, 2011 Share Posted October 28, 2011 You need to post your actual code that reproduces the problem. Quote Link to comment https://forums.phpfreaks.com/topic/249985-store-textarea-html-code-in-php/#findComment-1283027 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.