Jump to content

how i calling to script in js in php for ?


kfir91

Recommended Posts

so i have this code :

$days = "<tr>";

for ($i=1; $i<=<SCRIPT LANGUAGE='javascript'>getDays();</SCRIPT>; $i++) {

$days .= "<td class=\"daydate\"><a href=\"javascript:void(0);\" onClick=\"javascript:setDate('$i');\">$i</a></td>";

if ($i%7 == 0)

$days .= "</tr><tr>";

}

$days .= "</tr>";

 

how i do it that is work ?

 

What's bigger picture here? It seems like you're trying to create a calendar from the looks of it.

I think you're better of rewriting the whole thing in javascript or completely in php depending on the purpose of your script

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.