No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
You can use an INSERT statement and the cnn.Execute() method.
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.
What you mean with "hex file"? If it's a binary file, you can use TFileStream to write your bytes into a file.
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]
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.
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" …
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]?
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.
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 …
The End.
filippo.toso