Jump to content

calling php function from javascript?


bilis_money

Recommended Posts

How do you call a php function from javascript.

 

let say i have a php function like this below;

 

function myfunc() {

etc...

}

 

now i have javascript below using onmouover();

<a href="" onmouseover="">

<img src="mypicture.jpg" width="" height="" border="2"/>

</a>

 

what is the proper way to insert php myfunc() inside javascript

onmouseover() function. So that i can call the php function.

 

is this correct below?

<a href="" onmouseover="<?php myfunc(); ?>">

 

I have not tested that so i'm not sure if it is correct.

 

 

Thanks in advance.

 

 

Link to comment
https://forums.phpfreaks.com/topic/74302-calling-php-function-from-javascript/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.