HTML Textbox not typing -


i need help. form in page looks below when click on text box cursor won't appear , can't type

<form name="input" action="postblog.php?name=<?php echo ($_get['name']); ?>" method="post">         post: <input type="text" name="text2">     <input type="submit" value="submit">     </form> 

there's error that's not being displayed on screen because it's appearing inside html tags. make sure check if $_get['name'] set first:

<form name="input" action="postblog.php?name=<?php echo ($_get && isset($_get['name'])) ? $_get['name'] : 'no_name_value_from_get'; ?>" method="post">   post: <input type="text" name="text2" />   <input type="submit" value="submit" /> </form> 

in instance, if $_get['name'] not set, value ?name= no_name_value_from_get (but can change whatever want).

hth... :)