MDGM 22 Posting Whiz in Training

don't worry, iv found a solution - http://clicksms.co.uk/.

You make an account, buy a minimum of 100 texts (at about 10p each - buying in bulk gets price as low as 5p i think..) and then use a simple php script to send an XML HTTP request to their servers to send the message.

only bad thing is that they don't provide a pre-made sample php script for sending the xml request but i managed to find one on a forum somewhere.

If anybody needs the script id be happy to email (or whatever..) it to them - post in this thread.
(only works with http://clicksms.co.uk/)

peter_budo commented: Thanx for sharing +22
MDGM 22 Posting Whiz in Training

Hey,

Im just wondering how i can get something like this to work:

$tablename = $_POST['tablename']; 
mysql_query(CREATE TABLE `databasename`.`$tablename` (`name` VARCHAR( 200 ) NOT NULL))

At the moment its coming up with an error because I am using a variable for the table name instead of inputting it normally.

Thanks,

Max

Mosh_1 commented: So do it like this: `$name` +0