[PHP] About Speech

2002-11-29 Thread Ing. Raúl González Rodríguez
Hi. I need to know if it's possible generate a wav, mid or mp3 file from php. I really need create a sound file and send it to the user using http. Exist some tool to do this work? Someone can give me an idea? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Deleting multiple items from database using checkboxes

2002-10-07 Thread Ing. Raúl González Rodríguez
You can use the following code to delete multiple items: if(isset($dele) (count($dele) 0)) { $sql = delete from gastenboek where (entryID='$dele[0]'); for($i=1; $icount($dele); $i++) $sql .= or (entryID='$dele[$i]'); $res = mysql_query($sql, $connection); } Raul