Since 4/26/2012 9:25:48 PM, hexkid2 has written 5 articles and participated in 1012 conversations. hexkid2 signature: hexkid2
hexkid2's articles:
Items(5) /1
Need help for an algorithm to mix two strings429 (10/8/2004 4:49:46 PM) comp.programming Need help for an algorithm to mix two strings. I've been thinking how to do this for more than a week and can't find a solution I like. Lets say I have a string of 'n' distinct digits, for example: "48137" an... Pedro
Re: How can I reference ID during an INSERT?031 (6/1/2004 10:11:53 AM) comp.lang.php Reply-Via-Newsgroup Thanks wrote: > > Reply-Via-Newsgroup Thanks wrote: > > (snip) > > > >>basically, I want to do something like > >> > >>mysql> insert myTable set firstname="elvis",txcode='tx'+ID; > >> > >>W... Pedro
avoiding CTRL-ALT-DEL by mistake139 (1/11/2004 6:19:19 PM) comp.lang.c [ please answer in and set followup to "comp.os.linux.setup" ] Well ... I've been using Windows for a long time before I switched to Linux. I'm very used to type CTRL-ALT-DEL everytime I'm leaving my computer ... Pedro
ugly code!921 (11/25/2003 1:01:05 AM) comp.lang.php not so ugly :) now ... I want to get rid of the $arr temporary variable. attempts (no more ; one attempt per line) echo ugly_array()[2]; ## parse error echo (ugly_array())[2]; ## parse erro... Pedro
POP before SMTP147 (9/22/2003 11:15:52 PM) comp.lang.php Hi all, a friend using Windows wanted to send mail, but he got timeout errors after editing php.ini Mail section smtp = smtp.server.com sendmail_from = friend@server.com I realized that was because of th... Pedro
Storing formatted numeric data836 (10/28/2004 12:33:12 AM) comp.lang.php Hi there, I am wanting to store price data as n.nn format, so if the user enters "1" the data that gets stored is "1.00" Is there a way to do this. Cheers Steven ... webmaster6249(12)
Modify Session Cookie on Every Page Load737 (10/28/2004 3:17:57 PM) comp.lang.php I've got a PHP system working on a development server (Windows 2000/IIS5/PHP 4.3.3) but it doesn't seem to be working quite right on the testing server (same except PHP 4.2.3). I upgraded the PHP on the testin... henryhartley(7)
sorting an array of three kinds of stones3634 (10/28/2004 5:53:32 PM) comp.lang.c There are three kinds of stones: red,green and blue. Each cell of the array contains one stone. The array needs to be sorted so that all the red stones will come first, then the blue ones and then all the gree... meital_20(4)
Problem Writing To File239 (10/29/2004 9:53:58 PM) comp.lang.php Hello all. Okay, this seems really stupid, but it's driving me up the wall. I have a simple script I've written to log some information to a text file. Everything seems to be okay, the code isn't throwing ... randyjackson1(12)
Search for string and then take string next to it.525 (11/1/2004 8:14:58 AM) comp.lang.php Hi, What I'm looking for is a way for php to retrieve a webpage, search for a string in it, and next to that will be a date string in the format (e.g.) 03-Sep-04 22:37:40 BST, and then I'd like PHP to store th... de.news(14)
Newbie: warning - how can I fix it?830 (11/9/2004 11:13:54 PM) comp.lang.c Hallo, here's a couple of lines from a function: fname(open) { *pwd, *err_log; char *ctime(); long time(), now; FILE *fp; err_log = getenv("ERROR_LOG"); [...never mind the rest...] The code doe... Zbigniew
C NEWBIE842 (11/9/2004 11:53:17 PM) comp.lang.c Does anybody have an article or any book refering to C language? -- This message has been sent using the astalavista.net newsreader webinterface. http://www.astalavista.net/ ... mmartinez_3NO(1)
Help Understanding Arrays221 (11/10/2004 12:12:07 AM) comp.lang.php I don't quite understand this. $result is the result of a mysql_query. $requests = array(); while ($request = mysql_fetch_array($result)) { print(""); print_r($request); array_push($requests, $request); } ... bvanderw-news5021(4)
auto detect CLI132 (11/11/2004 12:13:03 AM) comp.lang.php How can I detect in php that I am running from CLI (command line), and not the browser. I hate to put a constant in each script: e.g. define(�CLI�, 1)... -- http://www.dbForumz.com/ This article was posted... UseLinkToEmail3(368)
Why ???521 (11/11/2004 12:33:04 PM) comp.lang.php For passing values trough successives pages, I use $_SESSION variable. Here is a simple function I've created: function getvalue($fieldname){ if (isset($_GET[$fieldname])) return $_GET[$fieldname]; elseif ... bedford1(90)