|
First
|
Prev |
Next
|
Last
Pages: 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
Asynchronous PHP Execution I have a system where a user clicks on a button which causes rows to be inserted in to the database. I'd also like to run some lengthier post-processing on those rows, but don't want to put it in the critical path of the rows being inserted and returning to the user. What's the best way to either batch up these ot... 6 Jul 2008 05:51
Convert PDF Files to PCL-Files jogisarge wrote: Hello @all, i am running php5 on a IBM i5 V5R4. now i have to print exisiting pdf-files. the problem is, i cant use external programms like pdftops or other stuff like this, because the php core runs in the pase environment. is there any possibility to convert existing pdf... 5 Jul 2008 00:19
Trying to keep a dropdown selection sticky I have a form I want to keep sticky, but I can't figure out how. I got all the <INPUT>'s to be sticky.... The select script <?php echo '<strong>State</strong><br>'; echo '<select name="State">'; foreach ($state_list as $key => $value) { echo "<option value=\"$key\"> $value</option>\n"; } echo '</sele... 6 Jul 2008 01:47
Scrambling a word I am using PHP 4 I am trying to figure out how to scramble a word. Example: hello so the output might be elolh Any ideas? Ron ... 5 Jul 2008 06:24
Hi, Hi, How are u doing these days?Yesterday I found a web of a large trading company from china,which is an agent of all the well-known digital product factories,and facing to both wholesalers,retailsalers,and personal customer all over the world. They export all kinds of digital products and offer most competitive... 4 Jul 2008 17:11
Creating XML files Hi all, Some months ago i worked with XML. And i remember that i was able to create xml files quite easily. Now i don`t have the book i used by the time. I made many searches in google and i don't find something interesting. So i'm wondering if somebody can give a good link with examples. If i remeber well, i can cr... 6 Jul 2008 06:52
[PHP] Convert PDF Files to PCL-Files Hello @all, i am running php5 on a IBM i5 V5R4. now i have to print exisiting pdf-files. the problem is, i cant use external programms like pdftops or other stuff like this, because the php core runs in the pase environment. is there any possibility to convert existing pdfs to pcl files ? bye jo ... 4 Jul 2008 11:02
FW: [SPAM] [PHP] No Database Connection possible (mySQL) > -----Original Message----- From: Aviation Coding [mailto:aviationcoder(a)googlemail.com] Sent: Friday, July 04, 2008 10:15 AM To: php-general(a)lists.php.net Subject: [SPAM] [PHP] No Database Connection possible (mySQL) Importance: Low Hi all, I am having problems with a connection to a mysql... 4 Jul 2008 05:55
No Database Connection possible (mySQL) Hi all, I am having problems with a connection to a mysql database. I am using ---- function con() { mysql_connect("localhost","user","pass") or die(mysql_error()); mysql_select_db("tava") or die(mysql_error()); } ---- Now, when I call the _function_ (!) ---- con() or die("no con"); ---- I get the... 7 Jul 2008 01:15
Static Member Overloading Does anyone know if static member overloading was added in PHP 5.3? I noticed that static method overloading was (__callStatic). Thought I'd ask here before attempting to ask in the internals. Ex: __setStatic() __getStatic() __isset() __unset() ... 3 Jul 2008 21:46 |