Tag Archives: Will Allow People

just out of curiosity

Is there methods to get a variety to post information into the same page that it’s on I used to be thinking something like this. don’t understand why it is not working. < html> < head> < /head> < body> < php $a = $_get ‘input’; > < variety action=" sample. php" method=" get" > < enter type=" text" name=" input" size=" 10" > < enter type=" submit" value=" display" > < /form> < php reveal ‘$a’ > < /body> < /html> or maybe methods to get this details to post into the page without refreshing the page You ought to be using $_POST as opposed to $_GET (and they are as shown… you had it typed wrong). Without specifying " action", it will eventually assume the identical file (or script) because itself. PHP: < html> < head> < /head> < body> < php$a  =  $_POST’input’; > < form  method=”post”> < input  type=”text”  name=”input”  size=”10″> < input  type=”submit”  value=”display”> < /form> < php  echo  ‘$a’  > < /body> < /html> acceptable well, maybe you can help me together with my final goal… i need to make an application that will allow people to create their own internet business cards. sort … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , , , , , | Leave a comment