What is the substitution of submit in PHP?

Answers were Sorted based on User's Feedback



What is the substitution of submit in PHP?..

Answer / binoyav

To my knowledge, header function won't submit the page.
Please clarify.

Is This Answer Correct ?    4 Yes 0 No

What is the substitution of submit in PHP?..

Answer / shweta

<a href="javascript:document.formname.submit();">Submit</a>

Is This Answer Correct ?    3 Yes 1 No

What is the substitution of submit in PHP?..

Answer / narender

It is possible by using <a href=submit.php?val=name>.

Is This Answer Correct ?    2 Yes 1 No

What is the substitution of submit in PHP?..

Answer / i_know_php_bit

there are two ways
1) Using Javascript-
form.submit();
2) Using CURL functions

Is This Answer Correct ?    2 Yes 3 No

What is the substitution of submit in PHP?..

Answer / abhishek anand

1We can use image element in form. In this case we use an
image instead of submit button.
<input type="image" src="my_pic">
2. Use Javascript formname.submit() method.

Is This Answer Correct ?    1 Yes 2 No

What is the substitution of submit in PHP?..

Answer / umesh

you can use Header

header("Location: nextpage.php")

Is This Answer Correct ?    4 Yes 7 No

Post New Answer

More PHP Interview Questions

What are html entities?

0 Answers  


Explain Magento's autoload functionality and how to instantiate classes? What is the process you take when theming a store? Talk about Magento collections and how you use them?

0 Answers  


Where is my php ini file?

0 Answers  


How to turn on the session support in php?

0 Answers  


Tell me how to retrieve a cookie value?

0 Answers  






Can php replace javascript?

0 Answers  


Is php an object or array?

0 Answers  


What is the use of print_r function in php?

0 Answers  


Is a number php?

0 Answers  


What is if isset ($_ post submit )) in php?

0 Answers  


Tell me how would you declare a function that receives one parameter name hello?

0 Answers  


Explain how to submit form without a submit button.

0 Answers  


Categories