Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #22.6K
~3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

9 Posted Topics

Member Avatar for bob on whidbey
Member Avatar for waynera
0
134
Member Avatar for OmniX

You can use directly mysql_* functions or use an abstraction layer such as ADODb or a framework like CakePHP that exposes the database as objects.

Member Avatar for nav33n
0
72
Member Avatar for rickstar123

What you mean with "hex file"? If it's a binary file, you can use TFileStream to write your bytes into a file.

Member Avatar for Duoas
0
2K
Member Avatar for ishlux

If you want them one side by side, you have to place them on the same row (TR tag). For instance [code=php]<table> <tr> <td><?php include "autoaltoheader.html"; ?></td> <td><?php include "autoaltosignin1.html"; ?></td> <td><?php include "autoaltosignin1.html"; ?></td> </tr> </table>[/code]

Member Avatar for GGAB
0
343
Member Avatar for allhimachal.com

CVS is a text file, without formatting. If you want to open it in Microsoft Excel with a specific style, you have to create an XLS file.

Member Avatar for filippo.toso
0
74
Member Avatar for padma525

This is an easy one. Just create a "dispatch" PHP script that acts as proxy for the download requests. Here is a sample code: [code=php]<form method="post"> <input type="radio" name="file" value="swf_filename1" checked="checked" /> <input type="radio" name="file" value="swf_filename2" /> <input type="radio" name="file" value="swf_filename3" /> <input type="radio" name="file" value="swf_filename4" /> <input type="submit" value="Download" …

Member Avatar for filippo.toso
0
134
Member Avatar for sara933

You can use the [url]http://www.php.net/exec[/url] functions to run MatLab files/commands. In alternative, why don't use the PHP [url=http://www.php.net/image]GD functions[/url]?

Member Avatar for filippo.toso
0
83
Member Avatar for dad45

Can you post a snippet of the saving procedure? If you have the text data in a string, you can use the Text property of TSringList to load it into the TSringList object.

Member Avatar for dad45
0
158
Member Avatar for mrcniceguy

You can use a code like the following: [code=php]<form method="post"> <input type="checkbox" name="ids[]" value="1" /> <input type="checkbox" name="ids[]" value="2" /> <input type="checkbox" name="ids[]" value="3" /> <input type="checkbox" name="ids[]" value="4" /> <input type="submit" value="Delete" /> </form> <pre> <?php if (isset($_POST['ids'])) { print_r($_POST['ids']); } ?> </pre>[/code] If you place the record ID …

Member Avatar for R0bb0b
0
96

The End.