[PHP] knowing which file is including

2004-03-26 Thread Ryan A
, is there any way to determine which file is calling the config.inc.php (a or b) and then set the require accordingly? I dont think so but am just wondering as PHP has a crapload of solutions that I would probably never know of. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net

[PHP] looping variables from a file

2004-03-24 Thread Ryan A
I do this while reading from a file? and the other big problem is the file contains one or two arrays... Any ideas? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] looping variables from a file

2004-03-24 Thread Ryan A
. This is all assuming the user comments are correct and variables from include()'d files are captured by get_defined_vars(). Yep, will check that out, but it should..will write back to the list if it does'nt. Thanks again. Cheers, -Ryan P.S I got the other script working where I force the download

[PHP] outputting php file

2004-03-22 Thread Ryan A
prewritten code you are willing to share? if not, links, suggestions,references to the manual and comments would be appreciated. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] outputting php file

2004-03-22 Thread Ryan A
. Thanks again, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Passing by conditional IF statement...why?

2004-03-22 Thread Ryan A
No results, sorry;} * * * * * its working great when the data actually exists but when there are no matches it still executes the if($res) part instead of displaying No results, sorry. Why is that? or am I using the syntax wrong? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net

Re: [PHP] Re: Passing by conditional IF statement...why?

2004-03-22 Thread Ryan A
Ryan A [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I have this simple code in my php script: * * * * * $res = mysql_query(SELECT product_id, now()-1 FROM .$tc._prods where cno=$cno AND product_id='$product_id' LIMIT 1); if($res) { $r = mysql_fetch_row

Re: [PHP] Re: Passing by conditional IF statement...why?

2004-03-22 Thread Ryan A
Hey John, Yep, this is just for one row as I need to know which file before I force a download. This is for people selling ebooks, MP3s etc I usually use a while loop if I need multiple rows returned. Cheers, -Ryan On 3/23/2004 3:07:14 AM, [EMAIL PROTECTED] wrote: Ryan A wrote: if(($r

[PHP] Anybody using Ensim Pro 3.5, help badly needed (0T)

2004-03-18 Thread Ryan A
to get 4.0 working but how do I get ensim working again? How do I put back these files? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] E-mail account disabling warning.

2004-03-18 Thread Ryan A
attachments even if it seems we sent it, if we require them to download anything it will be AT our site and not attached. They ARE getting sneakier arnt they? -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Certification

2004-03-16 Thread Ryan A
On 3/16/2004 2:50:52 PM, joel boonstra ([EMAIL PROTECTED]) wrote: On Mon, Mar 15, 2004 at 09:05:42AM -0700, Sheeraz fazal wrote: I need information about the php certification, from www.expertrating. com . Does this site has good market reputation? I took 10 minutes yesterday and checked

[PHP] PHP Zen-cart

2004-03-16 Thread Ryan A
a few features, and (according to the site) easy to customize the design... Anybody have any idea if its any good? pros? cons? recomendations? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Regex help

2004-03-15 Thread Ryan A
, Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Regex help

2004-03-15 Thread Ryan A
this problem was with cookies and sessions, I found the links I got from the people on this list much better than the examples in the manual...after learning from the web I did go back to the manual and understood thing much better. Cheers, -Ryan On 3/15/2004 6:18:38 PM, Chris W. Parker ([EMAIL

[PHP] tracking emails

2004-03-15 Thread Ryan A
, is there something I missed or any particlar way YOU do it? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regex help (SOLVED)

2004-03-15 Thread Ryan A
and suggested alternatives like explode(), but personally I thought explode too was a regex..:-(. Cheers, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Certification

2004-03-15 Thread Ryan A
Cheers, -Ryan * HI, I need information about the php certification, from www.expertrating.com . Does this site has good market reputation? Does www.php.net has some plans to introduce certification path? Comments welcome. Thanks, Sheri, -- PHP General Mailing List

Re: [PHP] Re: tracking emails

2004-03-15 Thread Ryan A
On 3/15/2004 11:19:13 PM, Rob Adams ([EMAIL PROTECTED]) wrote: Ryan A [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Problem: After sending the newsletter try to see how many people have actually opened the email. Send as html and call a script via a img tag passing

Re: [PHP] Behind the scenes coding?

2004-03-14 Thread Ryan A
Hehehe, this is pretty good, 3rd or 4th time I have read this exact email. I'm guessing Jason has this saved and waits for someone to do this then copies and pastes! Cheers, -Ryan You have started a new thread by taking an existing posting and replying to it while you changed the subject

[PHP] refresh parent window after submit of child

2004-03-11 Thread Ryan A
way) I would prefer a pure php solution as I dont know if JS will be on on the clients machine. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Get nice variables from POST

2004-03-11 Thread Ryan A
Does this look nicer? $fields = array('username', 'password', ...); foreach($fields as $key) $$key = $_POST[$key]; Hi Marek, A bit confused...whats the meaning of the double $ for key...or is that a typo? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: Re[2]: [PHP] Get nice variables from POST

2004-03-11 Thread Ryan A
Hey Richard, See Chapter 7 (Variables) of the PHP manual. I remember reading about variable variables and also remember not understanding them :-) Will go through ch.7 again. Thanks. Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] OT Kinda - Top Posting

2004-03-11 Thread Ryan A
post this... :-p wont be doing so after I download and install quotefix but feel free to flame if you cant take a joke. Cheers, -Ryan Can you all please stop top posting? It makes the posts harder to follow. Please break the habit right now. i agree. and for those of you that would like

[PHP] SQL in the database..little help please

2004-03-09 Thread Ryan A
it the same damn exact way...reading online is a problem coz I am getting conflicting ways of doing itor am just braindead looking at code all day, either way..your answer is appreciated. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] SQL in the database..little help please

2004-03-09 Thread Ryan A
Hello Ryan, Wednesday, March 10, 2004, 1:24:04 AM, you wrote: RA I have first put off magic_quotes...now can anybody tell me how RA YOU are doing it so I can do it the same damn exact way...reading RA online is a problem coz I am getting conflicting ways of doing RA itor am just

Re: [PHP] Very, very wiered problem

2004-03-08 Thread Ryan A
Hey, I dont really know the cause of your problem but I would put in a bunch of echo statements to pin down the area where you are getting the random char, then you could go in and debug a bit more easily. HTH. Cheers, -Ryan On 3/8/2004 10:15:47 PM, Mário Gamito ([EMAIL PROTECTED]) wrote: Hi

RE: [PHP] Need Help in shoppin cart

2004-03-08 Thread Ryan A
. i usually make websites in a room... but that's cool too. chris. Forget it Chris, this scumbag really isnt worth it. A product of two first cousins and a hot summer day I guess ;-) Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] UK Bank Holidays 2

2004-03-06 Thread Ryan A
Wowee..Now isnt this a nice response with people taking sides and everything. :-) Shaun, Ryan, I may be getting out of my league here, but if the makers of PHP didn't care about us here in the UK then why was this function created: gmmktime(); I didnt say they didnt care about you in the UK

Re: [PHP] Let's start a php-advanced list!

2004-03-06 Thread Ryan A
into problems. If only newbies and average knowledge dudes are in the not advance list it wont work coz the blind leading the blind does not work. My $0.2 Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] UK Bank Holidays 2

2004-03-06 Thread Ryan A
On 3/6/2004 5:36:01 PM, Raditha Dissanayake ([EMAIL PROTECTED]) wrote: And for the record, I didnt single you out the post was just irritating...the rest of you who dont agree..thats your opinion..and the rest of you who got pissed at me...bite me. Cheers, -Ryan What come all

Re: [PHP] Scripts for customer - service provider web available?

2004-03-06 Thread Ryan A
Hey, I have seen quite a few of these on Hotscripts and other script archive sites.. they are mostly listed under auctions and classifieds. Check out hotscripts and after that google if you dont find what you are looking for. Cheers, -Ryan On 3/6/2004 6:03:20 PM, Denis L. Menezes ([EMAIL

Re: [PHP] UK Bank Holidays 2

2004-03-06 Thread Ryan A
Ryan, I want to officially apologize since it appears that I started this mess. To me, it just appeared that you were flaming someone, and while perhaps for good cause (since he posted two threads to the list about the same topic only a matter of a few hours apart), I just felt

Re: [PHP] Need Help in shoppin cart

2004-03-06 Thread Ryan A
This is sooo low down I think he has to look up to see the snakes belly. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] UK Bank Holidays 2

2004-03-05 Thread Ryan A
that the bottom question is a real dumb one. Cheers, -Ryan Hi, How can PHP recognise dates that are UK Bank Holidays? Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net

Re: [PHP] UK Bank Holidays 2

2004-03-05 Thread Ryan A
Ryan: Well, that's not a very nice way to treat someone on the list, even if it was the second time you'd seen the question in the same day or even if it was a question that is obviously in the manual. Some people are just at different proficiencies in their learning process and don't

Re: [PHP] Global Vars

2004-03-04 Thread Ryan A
should get you going, but read up in the manual. Cheers, -Ryan On 3/4/2004 6:55:50 PM, Patrick Fowler ([EMAIL PROTECTED]) wrote: I installed SuSE Linux 9.0 along with php. The flag below is turned off by default. I could not send any vars with a post or get form. I turned it one and all

[PHP] What to do with my array?? Advise needed....

2004-03-04 Thread Ryan A
to have 1 hidden fields for 1 addresses...is it legal (and ok) to put the array into a session or some way of passing that array? What to do? Advise appreciated. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HELP! printing Arrays

2004-03-03 Thread Ryan A
, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] god damn technical outsourcing.com

2004-03-02 Thread Ryan A
I agree too. Now who do we contact for that? This seems to be the latest in a string of idiots, the king was that idiot at hanmir.com then came the challenge requests (ie: click here to prove your email is not spam, you only have to do this once blah blah blah) and now this... :-( I agree, these

RE: [PHP] god damn technical outsourcing.com

2004-03-02 Thread Ryan A
Also anybody else getting from AirAndHotel.com? I agree too. Now who do we contact for that? This seems to be the latest in a string of idiots, the king was that idiot at hanmir.com then came the challenge requests (ie: click here to prove your email is not spam, you only have to do this

RE: Re[2]: [PHP] god damn technical outsourcing.com

2004-03-02 Thread Ryan A
Hi Rasmus, I think I can safely say, on behalf of everyone on the list: Thank you. -Ryan On 3/2/2004 4:03:04 PM, Rasmus Lerdorf ([EMAIL PROTECTED]) wrote: Ok, gone. On Tue, 2 Mar 2004, Chris Sandy wrote: Its [EMAIL PROTECTED] -Original Message- From: Rasmus Lerdorf [mailto

[PHP] PHP and FLASH progress bar

2004-03-01 Thread Ryan A
to search, but have not made this myself as I dont know flash well enough Any ideas? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] A question about permissions.....might be a bit 0T

2004-02-29 Thread Ryan A
blame me...so my question is...is it safe to do that or tell her shes just gonna have to learn FTP if she wants to do it? Its presently on 644. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] between timestamps

2004-02-28 Thread Ryan A
entries in a join_date (timestamp(4)) field for every day of Feb and need to get all records between sayyy... 7th Feb and 15th Feb.. ideas? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] 2 questions - PHP site Automatic search and slow display

2004-02-28 Thread Ryan A
functions page... I searched the php.net site but I couldnt find any reference to how they are doing that... I know it probably has mod_rewrite which takes the variable to a search script...right? any ideas? or is it somewhere on the php.net site that i have not looked? URL? Thanks, -Ryan -- PHP General

Re: [PHP] List files in a dir

2004-02-27 Thread Ryan A
didnt automatically solve all your problems you might want to check this out: http://www.google.com/search?q=php+directory+functions also make a note of the first site that is right on top of the results, i'm told they know a bit about php. Cheers, -Ryan -- PHP General Mailing List (http

[PHP] Timestamp query...

2004-02-27 Thread Ryan A
was to select all the records from the database then convert them to a unix timestamp with mktime and then compare themwhich is a long process and pretty resource wasteful (IMHO) as there will most probably be hundreds if not thousands of records... Any suggestions? Thanks, -Ryan -- PHP General Mailing

Re: [PHP] Timestamp query...

2004-02-27 Thread Ryan A
with the LIKE command with the % operator as I use it often to search for words, but am just a bit puzzled with what you wrote... Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Weird result from query...?

2004-02-26 Thread Ryan A
... and I did try this: total='.$p.'; I wonder if total is a mysql reserved word or something Like I said before, i took that out and everythings running fine 'n dandy...but am just curious as to what was wrong...never know if it may come up again in future. Cheers, -Ryan Try this: which runs

[PHP] Weird result from query...?

2004-02-26 Thread Ryan A
just curious as to what was actually causing the problem...any ideas? Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] apostrophe ( ' ) on a form, adding \; How can i fix this?

2004-02-25 Thread Ryan A
Hey Your magic_quotes_gpc is onswitch it off and your problem will go away, or read up on it. You might also want to use a function which will make quotes and apostrophes etc safe...check the manual as there are a few. Cheers, -Ryan On 2/26/2004 6:19:02 AM, Louie Miranda ([EMAIL PROTECTED

[PHP] running php3 files

2004-02-24 Thread Ryan A
Hi, A small problem, a pal of mine is hosting with a company that has PHP configured to run only with the .php extention and not the .php3 extention... Where will he have to make the changes so that his scripts will run if its .php or .php3 ? Thanks, -Ryan -- PHP General Mailing List (http

Re: [PHP] running php3 files

2004-02-24 Thread Ryan A
and php3 files...how do I make him do that? by editing the httpd.conf file or the php.ini file or? Thanks, -Ryan A -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] htaccess

2004-02-24 Thread Ryan C. Creasey
really php related. -- Ryan C. Creasey Network Engineer p11creative, inc. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] htaccess

2004-02-24 Thread Ryan C. Creasey
Ryan C. Creasey wrote: In all liklihood, he's referring to apache's mod_access module. You should try reading the documentation over at the apache group's website, as it's quite extensive. http://httpd.apache.org/docs-2.0/mod/mod_access.html Also, mod_auth: http://httpd.apache.org/docs-2.0

Re: [PHP] Re: looks like the spammers got through anyway

2004-02-24 Thread Ryan A
On 2/25/2004 4:03:05 AM, Will ([EMAIL PROTECTED]) wrote: I know the feeling!!! I wish they would go away!!! ~WILL~ You can wish all you wantthose SOBs are here to stay. Hopefully they will meet with an accident and get a slow p a i n f u l death. -Ryan -- PHP General Mailing List

[PHP] Re: XSLT in php v5 beta 4

2004-02-23 Thread Ryan C. Creasey
functions used with php4/sablotron going to be supported in the php5/libxml implementations? Or am I going to have to re-code a bunch of my xsl functions? -- Ryan C. Creasey Network Engineer p11creative, inc. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: HTML email problem: IMAP

2004-02-21 Thread Ryan A
...coz its working great! Cheers, -Ryan Hello, On 02/21/2004 01:39 AM, Ryan A wrote: I downloaded a class from php classes called clssendmail, the class was working on a different server but now I get this error when I try to use it: Call to undefined function: imap_8bit

Re: [PHP] undelivery mails

2004-02-20 Thread Ryan A
email take them out of the db...this can be run via a cron. HTH. Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HTML email problem: IMAP

2004-02-20 Thread Ryan A
of another class that does what this is supposed to do and will work on all servers? I also downloaded manuel lemos collection of mime classes but thats t damn powerful for my little task..couldnt understand half of what was in there. Any help appreciated. Cheers. -Ryan -- PHP General Mailing

[PHP] Crappy results from query

2004-02-18 Thread Ryan A
565454 Ryan 211 565454 Ryan 11 565454 Ryan 617 845874 susan 44 845874 susan 857 698457 Jacob 211 The idea is to present just one unique name in the control panel. Since I am paginating I am getting the correct COUNT of 3, but when I display it...it shows me something like

Re: [PHP] Crappy results from query

2004-02-18 Thread Ryan A
On 2/18/2004 3:32:31 PM, Duncan Hill ([EMAIL PROTECTED]) wrote: On Wednesday 18 February 2004 14:21, Ryan A wrote: Hey, Cant really understand this, can someone point out where I'm going wrong please? The idea is simple, I have 3+ names of clients in the database, each client has

Re: [PHP] Crappy results from query

2004-02-18 Thread Ryan A
rows. -- Stuart Hey Stuart, Thanks for replying. So what can I do to make sure I get only order_id distinct? possible? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Getting age from yyyy-mm-dd

2004-02-18 Thread Ryan A
to use mktimebut how?? Any help appreciated, in URL form, hints or PHP manual references. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SOLVED: Getting age from yyyy-mm-dd

2004-02-18 Thread Ryan A
Hey, My thanks go out to everyone who replied I finally got this: http://www.zend.com/codex.php?id=309single=1 I used a substr to break it into 3 variables and then passed it to the above function. Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Going a bit nuts with php/mysql structure......(maybe 0T)

2004-02-18 Thread Ryan A
Hi, Like I said before am working on a project that someone else created so dont blame me for this daft architecture. The problem is in the products table, he has the name and products in one table, this is the structure and records: cno order_id name product 1234455 ryan 123 2234455

Re: [PHP] fonts

2004-02-18 Thread Ryan A
Ummm, if displaying just webpages and the font is so important...cant you just make image files (ie. JPG) or am I missing something? -Ryan On 2/19/2004 2:36:30 AM, Jake McHenry ([EMAIL PROTECTED]) wrote: - Original Message - From: [EMAIL PROTECTED] To: Jake McHenry [EMAIL PROTECTED

Re: [PHP] PHP Newbie Database Records?

2004-02-15 Thread Ryan A
Hi, Do a select query with a COUNT() in it if you dont understand that read the php manual for accessing the database and lookup the mysql COUNT -Ryan On 2/16/2004 1:35:42 AM, PETCOL ([EMAIL PROTECTED]) wrote: PHP Newbie, I'm trying to find out if a username already appears in my

[PHP] Hard links

2004-02-13 Thread Ryan A
links? never really heard of it and googles no help either. Am I missing something? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php with mysql COUNT, DISTINCT syntax, might be a bit 0T

2004-02-09 Thread Ryan A
manual for count with distinct but am pretty sure it can be done as i have not found anything saying the opposite...any ideas? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php with mysql COUNT, DISTINCT syntax, might be a bit 0T

2004-02-09 Thread Ryan A
Hey, Thanks for replying. Nope, that didnt work, but i modified my search terms on google and kept on trying with different search terms and got the solution here: http://dbforums.com/arch/230/2002/11/623223 Cheers, -Ryan On 2/10/2004 3:14:21 AM, Shaunak Kashyap ([EMAIL PROTECTED]) wrote: Try

Re: [PHP] Re: Beginner amazes self with image gallery script!

2004-02-07 Thread Ryan A
Hey, a quick update, I know not many people use opera but...i do, and this does not work on Opera 6.05. It degrades gracefully though, it goes straight to the image. HTH. Cheers, -Ryan On 2/7/2004 9:37:36 PM, Joseph Szobody ([EMAIL PROTECTED]) wrote: My question is, I'm updating the pages

[PHP] refresh page (might be 0t)

2004-02-07 Thread Ryan A
it shows him the same cached content. How do i force the browser to display the new updated accounts after and edit or the new list of accounts after a delete? I KNOW php is server side and this is a browser issue...but maybe this can be done with headers or something? Thanks, -Ryan -- PHP General

Re: [PHP] thumbnail script

2004-02-06 Thread Ryan A
for jpg stuff, will try that out. HTH HAND Good luck! Sure did, and the same to you dude. Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Checking if database has been setup

2004-02-06 Thread Ryan A
advise, urls or bits of code would be appreciated. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] thumbnail script

2004-02-05 Thread Ryan A
, i tried hotscripts, google) Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FreeBSD to Linux -- PHP Issues

2004-02-03 Thread Ryan A
HAPPENS...SORT IT OUT,DO NOT MAIL ME. I just host with them. That said, best of luck. Cheers, -Ryan On 2/4/2004 12:52:35 AM, Tim Thorburn ([EMAIL PROTECTED]) wrote: I've moved sites between 3 or 4 different hosting providers until I found one that didn't sell out the week after we signed up

[PHP] Passing of querystrings

2004-02-01 Thread Ryan Francis
/output2.php?id=1 Which I hoped would make a variable, $id, and set the value to 1. However it doesnt work, the variable is not created. Any help would be greatly appreciated. I have Appache 2.0.48, MySQL 4.0.17, and PHP 4.3.4 Many Thanks Ryan Francis -- PHP General Mailing List (http

Re: [PHP] VERY URGENT.....

2004-02-01 Thread Ryan A
GREAT! The last time I went for the millions, my turn is over...so whose turn is it now? Cheers, -Ryan Mr JAMES OKORO Bank Of The North, Victoria Island Branch, Lagos, Nigeria. ATTN: MD/CEO I am Mr JAMES OKORO , Branch Manager with Bank of the North, Victoria Island Branch, Lagos

[PHP] comparing dates

2004-02-01 Thread Ryan A
hitting the manual, but have either been searching in the wrong places or? I think I will have to use explode,strtotime on this...but am not sure. Any help appreciated. Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] comparing dates

2004-02-01 Thread Ryan A
not have the user comments. Cheers, -Ryan http://Bestwebhosters.com - Original Message - From: Justin French [EMAIL PROTECTED] To: Ryan A [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, February 02, 2004 1:21 AM Subject: Re: [PHP] comparing dates On Monday, February 2, 2004, at 10

RE: [PHP] How do you guys do this?

2004-01-31 Thread Ryan A
Hey, Nice solution, I think i'll use it. Thanks. -Ryan On 1/31/2004 8:56:02 PM, [EMAIL PROTECTED] wrote: Ryan A wrote: Hey all, I needed to make a simple upload script so users could upload their images but had a small extra requirment, after searching google, hotscripts and all

[PHP] Simple script but confusion with comparing strings

2004-01-31 Thread Ryan A
? Thanks, -Ryan ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Simple script but confusion with comparing strings (SOLVED)

2004-01-31 Thread Ryan A
Hey, Thanks, it worked! -Ryan On 2/1/2004 1:13:32 AM, Stuart ([EMAIL PROTECTED]) wrote: Ryan A wrote: $somecontent = strtoupper(md5($type)); compared to... if(strcmp($contents,md5(1))==0) Comparing uppercase to lowercase (md5 generates a lowercase string). Either remove

[PHP] 3 variables not passing to function!!!????

2004-01-31 Thread Ryan A
wrong? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] 3 variables not passing to function!!!????

2004-01-31 Thread Ryan A
Oh crap, variable scope:-(( thanks again. -Ryan On 2/2/2004 4:17:40 AM, [EMAIL PROTECTED] wrote: Ryan A wrote: I am getting everything except the 3 variables($admin,$site,$lic), heres my function: *** include_once('PRO-Config.php'); echo $admin

Re: [PHP] locking to domain

2004-01-30 Thread Ryan A
Hey, Sorry, when I posted this yesterday it was towards the end of my day and I was not thinking straight, by the time I got up today I had it figured out :-) Thanks anyway to everyone who replied. Cheers, -Ryan On 1/30/2004 7:38:27 AM, Justin French ([EMAIL PROTECTED]) wrote: On Friday

[PHP] How do you guys do this?

2004-01-30 Thread Ryan A
related to this, I am restricting the uploaded files to be jpg,png and gif for security..anything else you suggest for security's sake? This is my first working upload script...I dont know everything and trying not to screw up so any and all help appreciated. Thanks, -Ryan -- PHP General Mailing

[PHP] Related links embedded in pages....

2004-01-30 Thread Ryan A
the content from the DB, search for the words that match your (probably) array of link words, replace the word with the code to generate a link or dhtml popup Thats putting it in the rawest sense...anybody know of any class, free piece of code, example functioning code etc that does this? Thanks, -Ryan

Re: [PHP] random?

2004-01-29 Thread Ryan A
come up first in the search with a preferred graphic) and then the rest via RAND(), except it seems to be taking a secret mysql function called SCREW_YOU_I_WONT_RAND() :-) If you do find something please share back here. Cheers, -Ryan -- PHP General Mailing List (http://www.php.net

[PHP] locking to domain

2004-01-29 Thread Ryan A
results without any success... anybody have this handy bit of code I could borrow? :-) Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] index page not running and other woes (0t?)

2004-01-28 Thread Ryan A
not found... i even tried calling the index file like so: http://ipnumber/index.html and it gives me a page not found... whats wrong? and what setting do i have to change? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] (WEIRD problem) Not following directories!!! (0t)

2004-01-28 Thread Ryan A
Hi, Heres a totally weird problem, I created some folders on our server (which we are accessing only via ip as the domain has not been resolved) but I get an error when i try to access the folder(s)! eg: (I created this folder) ryan and i try to access it like this: http://208.234.29.220/ryan

Re: [PHP] (WEIRD problem) Not following directories!!! (0t)

2004-01-28 Thread Ryan A
browsing is normaly disabled in web servers (from experience, apache and IIS). See? didnt know that. Learned something new. HTH Sure did. Thanks. Cheers, -Ryan Andrew Hi, Heres a totally weird problem, I created some folders on our server (which we are accessing only via ip as the domain

[PHP] SOLVED:- (WEIRD problem) Not following directories!!! (0t)

2004-01-28 Thread Ryan A
sense of them...and if you are like me...you might want to do the same. Cheers, -Ryan On 1/28/2004 8:10:28 PM, Andrew Séguin ([EMAIL PROTECTED]) wrote: my apologies... didn't see the ot at the end of the subject... happy that helped. Andrew -- PHP General Mailing List (http://www.php.net

[PHP] Copyrighting PHP, MySql, Apache,perl etc...

2004-01-28 Thread Ryan A
products, but those want to get paid if someone even mentions windows on TV in books etc... so we know where they stand. Cheers, -Ryan P.S If MS did get their way and windows got copyrighted, I bet they would have grabbed a dictionary and tried to copyright the whole damn thing

[PHP] binary code, unreadable code etc

2004-01-24 Thread Ryan A
not have any built in functions to do this, like for example C...any ideas? or recomendations? Thanks, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Why we love Microsoft (0t)

2004-01-23 Thread Ryan A
girl for dl'ing music, google for that) In closing, I hope (and am cheering) that Mike Rowe kicks Micro's ass. Cheers, -Ryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] what PHP really needs

2004-01-23 Thread Ryan A
Hey, I'm not really sure and am possibly wa off base but...cant something like this also be done by using global for variables? Cheers, -Ryan On 1/23/2004 9:33:55 PM, John W. Holmes ([EMAIL PROTECTED]) wrote: From: Chris Boget [EMAIL PROTECTED] [snip] [/snip] Learn and use C

Re: [PHP] Why we love Microsoft (0t)

2004-01-23 Thread Ryan A
) just verifying them. And most importantly, they state they are following the law to the letter in copyright and other stuff. It would be a tough case, and getting a lawyer (however low and greedy) to fight this for you would be tough. Just my $0.2 Cheers, -Ryan Ryan A wrote: Hey all, heres

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