I am trying to sonify a mysql database that runs in a webbrowser.
I have a number of php variables e.g
<?php echo $totalRows_rs_artist_nodes?> e.g 7
<?php echo $totalRows_Recordset1?> e.g. 4
<?php echo $totalRows_rs_image?> e.g. 20
<?php echo $totalRows_rs_audio?> e.g. 3
<?php echo $totalRows_rs_video?> e.g 0
does anyone have an idea about how to send the values of these variables to pd?
I'm on XP ( ;-( )
thanks milo
Hallo, j milo taylor hat gesagt: // j milo taylor wrote:
I am trying to sonify a mysql database that runs in a webbrowser.
I have a number of php variables e.g
<?php echo $totalRows_rs_artist_nodes?> e.g 7
<?php echo $totalRows_Recordset1?> e.g. 4
<?php echo $totalRows_rs_image?> e.g. 20
<?php echo $totalRows_rs_audio?> e.g. 3
<?php echo $totalRows_rs_video?> e.g 0
does anyone have an idea about how to send the values of these variables to pd?
For example using a socket connection from PHP -> Pd's netreceive, either handmade or with something like this: http://www.sourcelibre.com/puredata/
Or access the DB directly with Python/pyext or Lua/pdlua.
Frank
Very simple : Use fsockopen() function with PHP for exemple : $fp=fsockopen('127.0.0.1', 3003, $errno, $errstr); fwrite($fp2, "nametorouteafter "."yourvalue;"); fclose($fp2);
and with PD : create a [netreceive] object for exemple here : [netreceive 3003]
And all would be fine ;)
++
Jack
Le 19 mai 08 à 14:06, j milo taylor a écrit :
I am trying to sonify a mysql database that runs in a webbrowser.
I have a number of php variables e.g
<?php echo $totalRows_rs_artist_nodes?> e.g 7
<?php echo $totalRows_Recordset1?> e.g. 4
<?php echo $totalRows_rs_image?> e.g. 20
<?php echo $totalRows_rs_audio?> e.g. 3
<?php echo $totalRows_rs_video?> e.g 0
does anyone have an idea about how to send the values of these
variables to pd?I'm on XP ( ;-( )
thanks milo
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
Sorry a mistake in my last script, here the good PHP script :
$fp=fsockopen('127.0.0.1', 3003, $errno, $errstr); fwrite($fp, "nametorouteafter "."yourvalue;"); fclose($fp);
++
Jack
Le 19 mai 08 à 16:16, Jack a écrit :
Very simple : Use fsockopen() function with PHP for exemple : $fp=fsockopen('127.0.0.1', 3003, $errno, $errstr); fwrite($fp2, "nametorouteafter "."yourvalue;"); fclose($fp2);
and with PD : create a [netreceive] object for exemple here : [netreceive 3003]
And all would be fine ;)
++
Jack
Le 19 mai 08 à 14:06, j milo taylor a écrit :
I am trying to sonify a mysql database that runs in a webbrowser.
I have a number of php variables e.g
<?php echo $totalRows_rs_artist_nodes?> e.g 7
<?php echo $totalRows_Recordset1?> e.g. 4
<?php echo $totalRows_rs_image?> e.g. 20
<?php echo $totalRows_rs_audio?> e.g. 3
<?php echo $totalRows_rs_video?> e.g 0
does anyone have an idea about how to send the values of these variables to pd?
I'm on XP ( ;-( )
thanks milo
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list