[PHP] explode()

2003-11-17 Thread Adam Williams
I am having a user enter a phrase into a textbox, and then I need to seperate the words he has typed into variables so I can use each one in an sql statement. I know I will use the explode() function to do this, but how will I know how many variables I've created. For instance, if a user

[PHP] escaping ' when inside a

2003-11-17 Thread Adam Williams
If I have the SQL statement: $sql = select subject from subwhile where subject = '*$var[0]*'; do I need to put a \ before each '? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] escaping ' when inside a

2003-11-17 Thread Adam Williams
Yeah thats what I meant to do, my PHP is very rusty if you can't tell (and so is my SQL) :) Jay Blanchard wrote: [snip] If I have the SQL statement: $sql = select subject from subwhile where subject = '*$var[0]*'; Don't you want to do: $sql = select subject from subwhile where subject LIKE

[PHP] [Q] Development Best Practices

2003-11-17 Thread Adam
? I'm looking for tips and resources. Remember for my first site I've embarked on a fairly large site. Code maintenance will be an issue for me as I need to enhance and fix it later on. Thanks guys! Regards, Adam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] ignoring case

2003-11-12 Thread Adam Williams
Hi, does anyone happen to know off hand the function that will ignore case for data inputted via text from a form/form? I don't remember it off hand and can't find it in the function list on php.net. Basically it changes the text in the string from a character to [a-Z] for each character. I

Re: [PHP] ignoring case

2003-11-12 Thread Adam Williams
Hi, I finally found it in my notes, it was sql_regcase() Rolf Brusletto wrote: Adam Williams wrote: Hi, does anyone happen to know off hand the function that will ignore case for data inputted via text from a form/form? I don't remember it off hand and can't find it in the function list

[PHP] testing a variable

2003-11-12 Thread Adam Williams
Hello, I need to test a variable to see if it contains a value or not, and if not, do something. My php is a little rusty, so which would be better? if ( !$var ) { echo do something;} or if ( !isset($var ) { echo do something;} or are both of those wrong, and if so, how hsoudl I check if a

[PHP] keyword searching

2003-11-12 Thread Adam Williams
Hello, I am selecting a field in a database called description for keyword searching. The field contains names of people, states, years, etc. When someone searches for say holmes north carolina the query searches for exactly that, fields which have holmes north carolina, and not fields that

Re: [PHP] keyword searching

2003-11-12 Thread Adam Williams
I'm using Informix SQL. Do you know how to do full text searching on Informix? If so, please share the details :) Jay Blanchard wrote: [snip] I am selecting a field in a database called description for keyword searching. The field contains names of people, states, years, etc. When someone

Re: [PHP] help create community newbie guide to security

2003-11-11 Thread Adam i Agnieszka Gasiorowski FNORD
Chris W. Parker wrote: 10. Use htmlentities() on data that will be put through a SQL query to prevent XSS attacks. http://php.net/htmlentities How is it going to interact with MySQL FULLTEXT search SQL queries, where the characters and are in use as modifiers? -- Seks, seksi,

[PHP] On OS X (10.2) where is php installed?

2003-11-07 Thread Adam
. It serves PHP pages quite well, but I want to know where the binaries are located. I've tried using some sources I thought might tell me where the files are located, but they have not. Can anyone shed some light? Regards, Adam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] hard(?) syntax problem

2003-11-04 Thread Adam i Agnieszka Gasiorowski FNORD
I want to access a value of an array by key, but the array is not a variable - it is a constant. How do I do it? I tried $value = PL_ORT[$key]; , but this doesn't work (parse error)... I even tried $value = {PL_ORT[$key]}; --

[PHP] How to run PHP4 and PHP5 side-by-side

2003-11-02 Thread Adam Plocher
' '--enable-versioning' Thanks in advance -Adam

[PHP] Re: uncompressing gz string

2003-10-24 Thread Adam Zey
a while, I'm surprised it hasn't been fixed. Regards, Adam. Decapode Azur [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I don't understand why gzinflate and gzuncompress don't work? ?php $gz_content = file_get_contents('hello.txt.gz'); echo gzinflate($gz_content); // Warning

Re: [PHP] Is it worth $49? - codeSECURE 1.0 released - - Protecting PHP code

2003-10-24 Thread Adam Zey
the fastest PHP optimizer out there, it even beats out Zend Accelerator. And in addition to this, it also does a number of other things, including code encoding. Regards, Adam. John Black [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi Andrei, Thank you for writing. I have read

[PHP] sql query/displaying results question

2003-10-23 Thread Adam Williams
the 1st row returned if I am using a while loop, or because I already used $title at the top from the 1st row returned, will it want to start at the 2nd row returned when I start my while loop to return all of the data? Adam -- PHP General Mailing List (http://www.php.net

[PHP] Re: [PHP-DB] $_POST in MySQL query issue...

2003-10-19 Thread Adam Reiswig
question now is regarding the curly brackets in the 2nd example. Can anyone describe why using the curly brackets works and/or how php processes them. I have read quite a bit about php and never come accross thier use in this way. Thanks again. -Adam Reiswig -- PHP General Mailing List (http

[PHP] [PHP-DB] $_POST in MySQL query issue...

2003-10-19 Thread Adam Reiswig
question now is regarding the curly brackets in the 2nd example. Can anyone describe why using the curly brackets works and/or how php processes them. I have read quite a bit about php and never come accross thier use in this way. Thanks again. -Adam Reiswig -- PHP General Mailing List (http

Re: [PHP] PHP within Frames

2003-10-19 Thread Adam
This is really an browser interpretation of HTML issue than a straight PHP issue. A little more information would be helpful - such as browser, page content, etc. Regards, Adam On Sunday, October 19, 2003, at 05:45 PM, KB wrote: Hi, Does anyone know why my PHP pages won't work in Frames? I

[PHP] $_POST in MySQL query issue...

2003-10-16 Thread Adam Reiswig
= .$_POST['elementName']; and several other variations. Can anyone give me some pointers to inserting $_POST[] statements inside of query statements? I am sure there must be a way but I have spent a lot of time on this and am really stumped here. Thanks for any help. -Adam Reiswig PS if anything

[PHP] displaying time on the server

2003-10-15 Thread Adam Williams
the server's time. any suggestions on how to do this? Thanks! Adam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] allowing access to php page by IP

2003-10-07 Thread Adam Williams
(HTTP_X_FORWARDED_FOR); } elseif (getenv(REMOTE_ADDR)) { $ip = getenv(REMOTE_ADDR); } else $ip = UNKNOWN; Thanks, Adam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail() and Sender: field

2003-09-28 Thread Adam Whitehead
([EMAIL PROTECTED]) -- so this appears to the e-mail recipient as From: [EMAIL PROTECTED] ON BEHALF OF [the name/address i specified in From] Any idea what is causing this, and how I might be able to disable it? Adam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] PHP 4.3.3 Install, Errors??

2003-09-26 Thread Adam Douglas
! Unless you need PEAR, you're fine. Try configuring --without-pear. You should really be doing this anyways unless actually need PEAR. Evan Nemerson On Thursday 11 September 2003 02:10 pm, Adam Douglas wrote: Hi. I have a machine that's been freshly installed with PHP 4.1.1. I wanted

[PHP] Need help with a regex

2003-09-21 Thread Adam Zey
. Can somebody help me out with this? I'm completely stumped about how to go about doing a match until string as opposed to a match until character. Regards, Adam. --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.520 / Virus

Re: [PHP] Need help with a regex

2003-09-21 Thread Adam Zey
Thanks, that did the trick :) Only thing was I had to modify it for newline support: trtd class='newsitemtitle-td'([^]*)\/tdtd class='newsitemposter-td'span class=([^]*)([^]*)\/span([^]*)\/td\/tr trtd class='newsitemcontent-td' colspan=2((.|\n)*?)\/td\/tr Regards, Adam. Esctoday.Com | Wouter

[PHP] Shared Objects

2003-09-19 Thread Adam Whitehead
contained within. However, PHP will not load the shared object, saying that it is not a PHP shared object. Is there a way to take Linux shared objects and access the functionality in them in PHP? Much like you would instantiate a COM object on Windows to call its methods? Thanks Adam -- PHP General

Re: [PHP] Headers, outputting a file ..

2003-09-17 Thread Adam i Agnieszka Gasiorowski FNORD
Wouter van Vliet wrote: 110 $File = $this-Get($User); 111 112 foreach($File['Headers'] as $H) header($H);; 113 readfile($File['Path']); Do I see TWO ; here or it's just a typo? -- Seks, seksi, seksolatki...

[PHP] Win2K and trans_sid

2003-09-15 Thread Adam H. Pendleton
I am running Apache 2.0.47 with PHP 4.3.3 on a Windows 2000 server, and I am having some trouble getting cookie-less sessions to work. I've search around trying to figure out how to get this to work, but most of what i have found is people going to other way. To be clear, I am trying to use

RE: [PHP] How to access a program outside of PHP?

2003-09-11 Thread Adam Douglas
Mmm... okay. I tried that and nothing. Is there no way for me to determine what the problem is? Error message some place, log file, etc? I do not understand why this is not work. Even a simple example from the PHP manual on system() does not work. I meant to do this: $szPipe = `/htdocs/gs -q

RE: [PHP] How to access a program outside of PHP?

2003-09-11 Thread Adam Douglas
be something done about this or at least get some error message to determine what is going on. btw have you checked if you are in safe_mode? in php.ini error level can also be set in php.ini my guess is that you have a problem in your chroot setup. Adam Douglas wrote: Mmm... okay. I tried

[PHP] PHP 4.3.3 Install, Errors??

2003-09-11 Thread Adam Douglas
Hi. I have a machine that's been freshly installed with PHP 4.1.1. I wanted to upgrade it to PHP 4.3.3. So I did the following below as SU and received the below errors. Is this something I should be worried about? How can I resolve the errors? Never have had this happen before in the past. I ran

[PHP] How to access a program outside of PHP?

2003-09-10 Thread Adam Douglas
Hi. I'm trying to develop a web interface to the ghostscript (gs) application. I have the ghostscript syntax down perfectly in the console. Now when I go to try and do it in PHP I get nothing. No errors, nothing just a blank page with PHP logs turned on and errors turned on. I'm running Apache

RE: [PHP] How to access a program outside of PHP?

2003-09-10 Thread Adam Douglas
1) please try $szPipe and see if you get any output. 2) if you are jailed in /var/htdocs/ your pathname /htdocs/qs is incorrect. 3) I guess you tried running gs from the jail either as yourself or as root. please see if nobody or apache (the webserver's user) can run gostscript. 1)

RE: [PHP] How to access a program outside of PHP?

2003-09-10 Thread Adam Douglas
Hi. I'm trying to develop a web interface to the ghostscript (gs) application. I have the ghostscript syntax down perfectly in the console. Now when I go to try and do it in PHP I get nothing. No errors, nothing just a blank page with PHP logs turned on and errors turned on. Does

RE: [PHP] How to access a program outside of PHP?

2003-09-10 Thread Adam Douglas
1) When I echo out $szPipe I get Resource id #2. Sorry i was thinking of backticks. btw have you tried it ? (backticks) Backticks? Is this a PHP API function, I can't find it? That's the thing here I haven't been able to get things to work and I have no clue what I should use, exec(),

[PHP] PHP-General List post bounces???

2003-09-10 Thread Adam Douglas
Why do I keep getting this? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 10:12 AM To: [EMAIL PROTECTED] Subject: [ERR] RE: [PHP] How to access a program outside of PHP? Transmit Report: To: [EMAIL PROTECTED], 402

RE: [PHP] How to access a program outside of PHP?

2003-09-10 Thread Adam Douglas
Backticks is simply the ` sign (usually the character above the tab). Popularly know as `hair on the ear` in my country :-) for example if you want to invoke ls from php you just type $result = `ls`; hey presto the output from ls is now in your $result variable. Ohhh okay. Well if you

[PHP] PHP 4.3.3 compile error

2003-09-05 Thread Adam Williams
I'm not a programmer, so any advice on why its breaking on making the informix code and how to fix it would be appreciated. Thanks! Adam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] New User Script Failing Unexpectedly.

2003-09-01 Thread Adam Bishop
of the adresses at the end of the e mail, for any solutions, queries about my aims/ideals in this script, or anything else. P.s. The .inc files and .js files are totally unrelated to the newuser script. Thanks, Adam Bishop Sample 'A' ?PHP switch (@$do) { case process: session_start

[PHP] New User Script Failing Unexpectedly.

2003-09-01 Thread Adam Bishop
Thanks for all your help, but I ma still no closer to finding the problem. I'll try decomiling the whole application, and rewriting it, see it that works. If anyone has a brainwave in the meantime, any further help would be greatly appreciated. Thanks, Adam Bishop P.S. I have replaced

Re: [PHP] deprecated function list?

2003-08-21 Thread Adam i Agnieszka Gasiorowski FNORD
Chris wrote: How can I find a list of PHP functions that are deprecated? Also, how can I print to the browser the Notice message that would indicate that a function is depricated? Like: Notice: mysql(): This function is deprecated; use mysql_query() instead How about you do a search

[PHP] test

2003-08-16 Thread adam
tst -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] call function as variable

2003-08-16 Thread adam
Hi! I have folowing function which they are a member in a class. function foo(){ something } function zoo(){ something else } and i have a array such: $test = array(1=foo,2=zoo); and i want to call the fuction foo() and zoo something like; $object-$test[1](); I have tried this this, it will

[PHP] Re: How do I call a function in a Class from another function inthe same class

2003-08-16 Thread adam
typically problem! have you used $this-tehotherfunction(); or just use therotherfunction();??? if you call from your class to a members method , you have use $this!!! And read more about oo-method! cheers Donpro wrote: Hi, I have two functions in a class where one calls the other. When

Re: [PHP] call function as variable

2003-08-16 Thread adam
I got this error: Parse error: parse error, unexpected '{' in ... Cheers John W. Holmes wrote: adam wrote: Hi! I have folowing function which they are a member in a class. function foo(){ something } function zoo(){ something else } and i have a array such: $test = array(1=foo,2=zoo

Re: [PHP] call function as variable

2003-08-16 Thread adam
Tanks a lot! this is exactly that i want!! Cheers Michael Sims wrote: On Sat, 16 Aug 2003 07:58:27 +0200, you wrote: $test = array(1=foo,2=zoo); and i want to call the fuction foo() and zoo something like; $object-$test[1](); I've never used this myself, but this should work:

Re: [PHP] call function as variable

2003-08-16 Thread adam
Tanks a lot! This was exactly that i wanted! Cheers David Otton wrote: On Sat, 16 Aug 2003 07:58:27 +0200, you wrote: I have folowing function which they are a member in a class. function foo(){ something } function zoo(){ something else } and i have a array such: $test = array(1=foo,2=zoo);

Re: [PHP] counting files, choosing at random

2003-08-14 Thread Adam i Agnieszka Gasiorowski FNORD
David Otton wrote: On Wed, 13 Aug 2003 10:54:58 +0200, you wrote: I want to choose a file at random from a directory which adheres to certain naming scheme. I can't get it to work. It's probably something simple...Here is a relevant snippet: img src=/szukaj/images/i ?

Re: [PHP] how do I spoof a get request

2003-08-14 Thread Adam i Agnieszka Gasiorowski FNORD
Analysis Solutions wrote: By that logic, you would think that PHP sucks, because there are plenty of sucky PHP applications. :-) I've had folks say things along these lines. Considering the number of PHP related vulnerabilities showing up in Bugtraq/Security Focus newsletter, PHP must

Re: [PHP] Re: counting files, choosing at random

2003-08-14 Thread Adam i Agnieszka Gasiorowski FNORD
Peng Cheng wrote: i think the problem is there is a newline between the img src=/szukaj/images/i and ? . try write them in the same line may be a solution. Yes, you are right, I noticed it myself while trying David's solution. Thanks anyway. -- Seks, seksi, seksolatki...

[PHP] counting files, choosing at random

2003-08-14 Thread Adam i Agnieszka Gasiorowski FNORD
I want to choose a file at random from a directory which adheres to certain naming scheme. I can't get it to work. It's probably something simple...Here is a relevant snippet: img src=/szukaj/images/i ? chdir('./szukaj/images/'); echo mt_rand(0, count(glob('i*.gif', GLOB_NOSORT)) -

Re: [PHP] Unzipping Files

2003-08-07 Thread Adam Alkins
Try the zziplib library, http://www.php.net/manual/en/ref.zip.php -- Adam Alkins http://www.rasadam.com Quoting Matt Palermo [EMAIL PROTECTED]: Anyone know where I can find tutorials or examples on how to use the gunzip, gzip, and other commands using PHP to work with compressed files? I

Re: [PHP] Sum a column of values from a MySQL query

2003-08-07 Thread Adam Alkins
']; you could do $invoicepartpaid += $row['partpaid']; which will just add $row['partpaid'] to $invoicepartpaid, not replace it. However, why not just SUM all the rows in the table in the query if you just want a total? $sql_2 = SELECT SUM(partpaidamount) as partpaid FROM $tb_name; -- Adam

RE: [PHP] Tracking Users via Cookies? IDEA

2003-08-04 Thread Adam Alkins
Quoting Joe Harman [EMAIL PROTECTED]: What if you could read a browser's history file... There has to be a way to do this with something like javascript... Just an idea... Joe That would be a major privacy loophole if it were allowed.. -- Adam Alkins http://www.rasadam.com -- PHP

[PHP] Free'ing Sockets Error

2003-07-30 Thread Adam Voigt
'); $a = socket_accept($s); fwrite($f,socket_read($a,1000)); fclose($f); socket_shutdown($a); socket_close($a); socket_shutdown($s); socket_close($s); ? -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm

Re: [PHP] Re: mssql_execute problems...

2003-07-29 Thread Adam Voigt
. marker is fd Thanks in advance for any help. Tom Adam Voigt [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Umm, try setting TDSVER to 8.0 is all I could say to try. On Mon, 2003-07-28 at 12:10, T. Rader wrote: Any takers on this? T. Rader [EMAIL PROTECTED

Re: [PHP] PHP port problem

2003-07-29 Thread Adam Voigt
.. and it only allowed TCP port 1433, Nabil Attar Advanced Web Solutions /*** Everyone is a beginner once, and no one is an expert at everything. ***/ -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net

Re: [PHP] Backtip operator

2003-07-29 Thread Adam Voigt
; } elseif (eregi(`, $Myusername) ){ echo Hacking attempt; exit; } $Myusername= str_replace(\', '', $Myusername) ; $Myusername= str_replace(`, , $Myusername) ; Un saludo, Danny -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group

Re: [PHP] libtdsodbc.so

2003-07-29 Thread Adam Voigt
is an expert at everything. ***/ -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] libtdsodbc.so

2003-07-29 Thread Adam Voigt
Sorry, I don't use UnixODBC, so I have no idea. On Tue, 2003-07-29 at 10:14, Nabil wrote: Dear Adam ; The problem that it doesn't exist even after complilation .. ./configure --prefix=/usr/local/freetds --with-tdsver=4.2 --with-unixodbc=/u sr/lib make make install the point

Re: [PHP] debuging and getting mor information about failures

2003-07-29 Thread Adam Voigt
problem is. This is a very frustrating error message, but the above should take some of the pain away. :-) HTH. Pete. -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Simple Array question

2003-07-29 Thread Adam Voigt
and will be changing, I just need the values (in this case 3 and 4) to do some comparasion and assignment operations Kindly reply. Thank, -Ryan -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net

Re: [PHP] convert mysql datetime to unix timestamp

2003-07-28 Thread Adam Voigt
Tried passing it through strtotime? Example: echo(date('U',strtotime($string))); On Mon, 2003-07-28 at 12:06, Chris Hayes (SENSE) wrote: hi, i have to move data from a table with a datetime (2003-05-14 13:36:04) to a unix timestamp (e.g. 2147483647) . Any ideas? Chris -- Adam Voigt

Re: [PHP] Re: mssql_execute problems...

2003-07-28 Thread Adam Voigt
and cannot seem to find any answers via research... TIA, Tom -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Webpage like MySql- need to be able to see allfields and edit

2003-07-24 Thread Adam Voigt
Hedges | http://hedgesinnovations.com | -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is this possible?

2003-07-23 Thread Adam Voigt
-- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] USB Flash Drive

2003-07-23 Thread Adam Voigt
run on 98, 2000, ME, XP, Linux. If so, can someone please help me with the code? -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help with Date

2003-07-21 Thread Adam Voigt
-- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to store a file into MSSQL?

2003-07-17 Thread Adam Voigt
) but, blob can work fine. -- *** s2r - public key: (http://leeloo.mine.nu/s2r-gmx.sig) -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Bringing href up in a different page

2003-07-17 Thread Adam Voigt
Umm, you mean new WINDOW? Add: target=_new To your href. On Thu, 2003-07-17 at 12:35, Ron Allen wrote: This is my current code. I am trying to have this come up in a different page. Help please! a href=ticket_admin.php?ID=.$row['ID']..$row['ID']./a -- Adam Voigt ([EMAIL PROTECTED

Re: [PHP] How to store a file into MSSQL?

2003-07-16 Thread Adam Voigt
://leeloo.mine.nu/s2r-gmx.sig) -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] INT Field in mysql display without .00

2003-07-16 Thread Adam Voigt
-- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SQL select

2003-07-10 Thread Adam Voigt
://sbc.yahoo.com -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using PPP with PHP

2003-07-10 Thread Adam Voigt
network and was hoping that I could use PHP. Currently I can manually establish I dial-up using PPP over a modem. I would like to automate the process as much as possible. Any help would be grandly appreciated. Jay -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator

[PHP] Running PHP4 and PHP5 together

2003-07-10 Thread Adam Plocher
or php5 modules per virtualhost, that would be an acceptible alternative, too, but that didn't seem to work when I tried it. Thanks -Adam

[PHP] Can php/mysql handle 10000s of records

2003-07-09 Thread Adam Gerson
From: Adam Gerson [EMAIL PROTECTED] Date: Wed Jul 9, 2003 9:48:20 AM America/New_York To: [EMAIL PROTECTED] Subject: Can php/mysql handle 1000's of records? I know this questions is a little of topic, but I figured the members of this list would have experience in this area. I am writing

Re: [PHP] Can php/mysql handle 10000s of records

2003-07-09 Thread Adam Voigt
It can handle 1,000,000 records without breaking a sweat. On Wed, 2003-07-09 at 09:54, Adam Gerson wrote: From: Adam Gerson [EMAIL PROTECTED] Date: Wed Jul 9, 2003 9:48:20 AM America/New_York To: [EMAIL PROTECTED] Subject: Can php/mysql handle 1000's of records? I know this questions

Re: [PHP] Using PHP to stream to Shoutcastserver

2003-07-08 Thread Adam Voigt
thing. I've been looking a bit at Java and C++ but so far I'm not very good with these languages. Any thougts/comments about this would be nice if you shared. //Simon -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List

Re: [PHP] what's wrong with this?????

2003-07-08 Thread Adam Voigt
? Thanks -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: Re[2]: [PHP] Read a file

2003-07-08 Thread Adam Voigt
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] imap_header timing out

2003-07-08 Thread Adam Voigt
: [EMAIL PROTECTED] Perl | PHP | MySQL | CGI programming for all data entry forms. We make web sites work! -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] imap_header timing out

2003-07-08 Thread Adam Voigt
. A perl script that reads the mailbox has no problems with any of the headers, but it uses external modules for some of the header parsing. I may have to do my own with PHP. -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List

Re: [PHP] daemonized php

2003-07-07 Thread Adam Voigt
written in PHP in Unix console. I wan't to write some server aplication. So it has to be run in the backgroud. -- Best regards, Uros -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: Re[2]: [PHP] daemonized php

2003-07-07 Thread Adam Voigt
. -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Catch Signals

2003-07-07 Thread Adam Voigt
program is still in it's infinite loop doing what it's supposed to be doing, and doesn't realize it's been sent a shutdown signal. So, is there anyway to listen for a shutdown signal on a console based PHP script under Windows? -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator

Re: [PHP] mail() function

2003-07-07 Thread Adam Voigt
(which is in a traditional spot: /usr/sbin/sendmail). Thanks, -Mike -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Red Hat 9, Apache 2, and PHP

2003-07-04 Thread Adam i Agnieszka Gasiorowski FNORD
Diana wrote: Hi, that sounds really impressive. I'm using Redhat 9 with the stuff from their Edition, that means Apache 2 and php together. Never had any issues (so far.keep my fingers crossed). The server is not under heavy load, but it is indeed a production server. I know it is not

RE: [PHP] Get Rid of this Crook

2003-07-03 Thread Adam Voigt
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Redirect to a different frame...

2003-07-03 Thread Adam Voigt
prohibited. If you have received this message in error, please destroy it and advise the sender immediately by phone, email or facsimile. -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] outputting xml declaration

2003-07-02 Thread Adam Voigt
that an error is generated? Besides it's not an error in the way that it gives an errorstring but it writes the output in the error_log of apache... Greetings, -- Steven Apostolou [EMAIL PROTECTED] -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group

RE: [PHP] outputting xml declaration

2003-07-02 Thread Adam Voigt
is generated? Besides it's not an error in the way that it gives an errorstring but it writes the output in the error_log of apache... [/snip] Search the archives of this list, the subject comes up often. HTH! Jay -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator

Re: [PHP] Free Service to Secure PHP Code

2003-07-02 Thread Adam Voigt
FREE!! _ Encrypt your PHP code for FREE at http://encphp.sspsoft.com _ -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net

Re: [PHP] multi line regular expression?

2003-07-01 Thread Adam i Agnieszka Gasiorowski FNORD
Tim wrote: i have a string that contains the following: $mystring=EOS (((TITLE))) *color* == this is where the content goes it can spreed many lines ... == EOS; i'm using this line of code to try and get the content between == and ==

[PHP] fwrite() question

2003-07-01 Thread Adam Williams
looks ok to me. When I take out the around $POST_['news'] it doesn't generate an error, but then it doesn't write anything to news.txt. news.txt is owned by nobody with 755 and apache runs as nobody. I'd appreciate any help. Thanks! Adam -- PHP General Mailing List

Re: [PHP] fwrite() question

2003-07-01 Thread Adam Williams
; } echo /textarea br input type=submit value=submit name=submit /form; fclose($fp); } ? a href=http://archives1.mdah.state.ms.us/news.php;home/a /body/html Adam On Tue, 1 Jul 2003, Adrian wrote: you should use $_POST

Re: [PHP] file pointer

2003-07-01 Thread Adam Voigt
kasjdhkjlfh asdjfhklajs askjdhjfdjf//here Thanks, -- Kyle -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http

Re: [PHP] file pointer

2003-07-01 Thread Adam Voigt
kasjdhkjlfh asdjfhklajs askjdhjfdjf//here Thanks, -- Kyle -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http

Re: [PHP] Problems compiling PHP 5.0.0b1

2003-07-01 Thread Adam Voigt
libxml 2.5.7 and the same error appears. I've compiled several diffrent versions of PHP before without problems. Has anyone had a similar problem ? TIA, _ Mauricio Cuenca -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP

RE: [PHP] preg_match? [SOLVED]

2003-06-30 Thread Adam Voigt
-- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The Cryptocomm Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    4   5   6   7   8   9   10   11   12   13   >