How to pop up a input form in php?

Asked By 20 points N/A Posted on -
qa-featured

Hello experts,

How to pop up a input form in PHP? I am not used to PHP programming language and still studying the coding techniques specially in connecting to some database like MySQL. I would like to ask you guys if you can give me some related topic on how to make an input form in PHP or any tutorial? Thank you.

SHARE
Answered By 0 points N/A #178343

How to pop up a input form in php?

qa-featured

Hi,

I may suggest to you to use JavaScript for your pop-up. and in using JavaScript you must use the function prompt example codes is here: 

<script type="text/javascript">
function myFunction()
{
var name=prompt("Hello world");

}
</script> 

Try to use this code if it sets to your codes.

I'll give you some PHP and JavaScript tutorial link so you can study more about it.

Related Questions