- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
8 Posted Topics
you can print directly to a printer held on the clients machine. the php_printer.dll is needed which can be found in the PECL downloads. once you have downloaded and copyed the php_printer.dll into your extensions folder i.e. c:\php\ext edit the php.inin in c:\php\ and add a line extension=php_printer.dll line in …
Hi All I was wondering if somebody could help me as this is driving me crazy. I am trying to send an array from a mysql_fetch_array result to a seporate table. I have the following code: [code=php] include("config.php"); $result7 = mysql_query("SELECT * from order_total"); while($row = mysql_fetch_array($result7)) { $test = …
Hi there I was wondering if anybody knew how to change the below code (which currently defaults to a MS Access database) to a mysql database. The below code is apart of a Caller ID software [code=vb6] Private Sub OpenDataBase() Set fo = New FileSystemObject Set wrk = CreateWorkspace("", "admin", …
cut a long story short I have 2 tables, one called orders_total and another called orders_complete. the total_oders table contains rows of what the customer has ordered to eat i.e. colum called 'item' contains the item description colum called 'cost' contains the item cost for example i can sucessfully display …
if i remember re calling this. I believe if you do not specify a file location for the file to be uploaded i believe it uses a default temporary location within the php.ini file. take a look at the php.net website for mor information
try the case statement, this would make things alot easier to code and to read. Regards
Hi Does anybody know if there is away for php to open a port i.e. com1 which is connected to the modem and pole for a incoming call? idealy I would like php to display CID (caller ID) from incoming call, then insert it into a mysql database. or pop …
Hi there, was wondering if somebody could help me. I currently have a project to create a php/mysql system for a local pizza company, a touch screen system. Cut a long story short, I need to be able to print multiple lines from a txt file. I have got the …
The End.
psycho007