RE: [PHP] Converting to a string

2005-03-24 Thread Tyler Replogle
you could just use the time() or numbers of the date function From: "PartyPosters" <[EMAIL PROTECTED]> To: Subject: [PHP] Converting to a string Date: Wed, 23 Mar 2005 20:43:30 - MIME-Version: 1.0 Received: from lists.php.net ([216.92.131.4]) by mc10-f11.hotmail.com with Microsoft SMTPSVC(6.0

[PHP] mysql query update two table in one?

2005-03-10 Thread Tyler Replogle
Can you update two tables in one mysql query i've got these two queries $db->query("update `dbn_members_counters` set views =(views +1) where id = '$this->id' "); $db->query("update `dbn_members` set lastaction = $conf->site_time, page = '$this->page' where id = '$this->id' "); and i was wonder

Re: [PHP] getting mac id

2005-03-01 Thread Tyler Replogle
lol, its been hard not to, its happened a few times but now that hotmail is 250 mb i'm fine. From: anirudh dutt <[EMAIL PROTECTED]> Reply-To: anirudh dutt <[EMAIL PROTECTED]> To: Tyler Replogle <[EMAIL PROTECTED]> CC: php-general@lists.php.net Subject: Re: [PHP] getting m

Re: [PHP] getting mac id

2005-02-27 Thread Tyler Replogle
off JavaScript, or even make it run some new JavaScript code specific to that site, with a click of a button in most modern browsers, and giving the user the ability to completely spoof a part of your control system is never a good idea ;) - tul Tyler Replogle wrote: do you think i could get

Re: [PHP] getting mac id

2005-02-26 Thread Tyler Replogle
nigths Online,WoW or Mu,in lan houses. If you ban the pc, none of the users who will play at this computer will be able to do it. On Fri, 25 Feb 2005 15:52:02 -0800, Tyler Replogle <[EMAIL PROTECTED]> wrote: Hey, I've been on this mailing list for quite a while, but i think this is my

Re: [PHP] getting mac id

2005-02-26 Thread Tyler Replogle
users who will play at this computer will be able to do it. On Fri, 25 Feb 2005 15:52:02 -0800, Tyler Replogle <[EMAIL PROTECTED]> wrote: > Hey, > > I've been on this mailing list for quite a while, but i think this is my > first question. I'm not sure though. > &g

[PHP] getting mac id

2005-02-25 Thread Tyler Replogle
Hey, I've been on this mailing list for quite a while, but i think this is my first question. I'm not sure though. Well here goes. I'm working at this site that has an MMORPG, a big online game, and we have this ban script. it bans the ip for the user and the user acount for an amount of time.

RE: [PHP] What's up with the list?

2005-02-25 Thread Tyler Replogle
So many people have said this, but i think its fix. From: John Nichel <[EMAIL PROTECTED]> To: PHP Mailing Lists Subject: [PHP] What's up with the list? Date: Fri, 25 Feb 2005 09:11:34 -0500 MIME-Version: 1.0 Received: from lists.php.net ([216.92.131.4]) by mc4-f38.hotmail.com with Microsoft SMTPS

RE: [PHP] [NEWBIE] How to allow for tags but no others?

2005-02-25 Thread Tyler Replogle
Hey Most of your question can be asnwer by this one i hope. I don't know how to make it so would only work, but i know how to make it i could work. You could change the "<, >" in only tags to [ ] before you take the html tags out then after you could change the "[,]" to "<,>" in only [a] tags o

RE: [PHP] List gone quiet?

2005-02-25 Thread Tyler Replogle
Yeah same here. I think it went down. From: Lester Caine <[EMAIL PROTECTED]> To: php-general@lists.php.net Subject: [PHP] List gone quiet? Date: Fri, 25 Feb 2005 11:13:50 + MIME-Version: 1.0 Received: from lists.php.net ([216.92.131.4]) by mc9-f30.hotmail.com with Microsoft SMTPSVC(6.0.3790.21

RE: [PHP] list down

2005-02-25 Thread Tyler Replogle
I think it didn't because i wasn't getting an emails for a while last night. I wanted one too becuase i didn't have the email to start a new message. From: Kris <[EMAIL PROTECTED]> To: php-general@lists.php.net Subject: [PHP] list down Date: Thu, 24 Feb 2005 15:04:31 -0600 MIME-Version: 1.0 Recei

RE: [PHP] Hash Issues

2005-02-25 Thread Tyler Replogle
Try doing the hash code after the password is posted From: "Erbacher Karl" <[EMAIL PROTECTED]> To: php-general@lists.php.net Subject: [PHP] Hash Issues Date: Thu, 24 Feb 2005 08:26:35 -0800 Received: from lists.php.net ([216.92.131.4]) by mc5-f20.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); F

RE: [PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Tyler Replogle
Try php.net for flat file date basing. It should tell you how to read a line and write to a new line. From: Tim Burgan <[EMAIL PROTECTED]> To: "[php] PHP General List" Subject: [PHP] HOWTO read PHP source code into a textarea Date: Fri, 25 Feb 2005 10:26:36 +1030 MIME-Version: 1.0 Received: from

RE: [PHP] FTP info in a variable

2005-02-25 Thread Tyler Replogle
Yes i think you can but i really won't do that. It does depend on the server and php verison that is installed on the server. From: Steve Buehler <[EMAIL PROTECTED]> To: PHP Subject: [PHP] FTP info in a variable Date: Thu, 24 Feb 2005 11:19:25 -0600 MIME-Version: 1.0 Received: from lists.php.net

RE: [PHP] [php] -help me

2005-02-18 Thread Tyler Replogle
$str_array = explode("/", ""/home/karthik/welcome.php/view.php"); // $str_array[4] shoud be view.php From: K Karthik <[EMAIL PROTECTED]> To: php-general@lists.php.net Subject: [PHP] [php] -help me Date: Fri, 18 Feb 2005 11:20:29 +0530 MIME-Version: 1.0 Received: from lists.php.net ([216.92.131.4])

RE: [PHP] help me split chars w/o spaces by 2... like: 2004

2004-12-08 Thread Tyler Replogle
have you tride using chop() ? # begin code $year_split = date("Y"); $chars = chop($year_split); $chars[0] // = 2 $chars[1] // = 0 $chars[2] // = 0 $chars[3] //= 4 # end code I hope that will help From: Louie Miranda <[EMAIL PROTECTED]> Reply-To: Louie Miranda <[EMAIL PROTECTED]> To: [EMAIL

RE: [PHP] Coding productivity benchmarks?

2004-06-07 Thread Tyler Replogle
hey, I just did all of that and it took me 1 hour and 35 mins, but I edited the code that i had already made from site before. It didn't take my anywhere near 4 hours, but there is no way i could do it in 40 mins. From: Derrick fogle <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> <[EMAIL PROTECTE

RE: [PHP] Problem with PHP + WML + Post method

2004-06-03 Thread Tyler Replogle
hey, don't you need a page thats after that and will check the info, if you have it will help use see what your problem with the $_POST[] is. From: "Shelby" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] Problem with PHP + WML + Post method Date: Fri, 4 Jun 2004 11:46:10 +0800 Hi, I'

Re: [PHP] Spammers

2004-06-01 Thread Tyler Replogle
yeah same thing for me, but i don't really care, its no reason to start hacker the server. From: "Steve Douville" <[EMAIL PROTECTED]> Reply-To: "Steve Douville" <[EMAIL PROTECTED]> To: "Php-General-Help" <[EMAIL PROTECTED]> Subject: Re: [PHP] Spammers Date: Tue, 1 Jun 2004 11:57:33 -0400 Those m

RE: [PHP] Re: clearing new pages

2004-05-26 Thread Tyler Replogle
hey, you could use some jave script there a.php: echo 'hello'; echo"

RE: [PHP] Possible Work in the Los Angeles Area...

2004-05-26 Thread Tyler Replogle
hey, I'm not going to call you, but we can talk over the net with email. I also have msn ([EMAIL PROTECTED]) and aim (catim2005). That goes for anyone that want to talk. O and if see my buddy icon on aim don't be scared. From: Domains4Days <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: [PH

Re: [PHP] How to check for a $_GET without throwing a Notice?

2004-05-26 Thread Tyler Replogle
aslo you could change it to something else like this $_GET['id'] = $id; if (!$id) { // whatever you want to happen put here } From: "Daniel Clark" <[EMAIL PROTECTED]> Reply-To: "Daniel Clark" <[EMAIL PROTECTED]> To: "Brian Dunning" <[EMAIL PROTECTED]>,"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> Subjec

RE: [PHP] require_once('') relative path problem

2004-04-22 Thread Tyler Replogle
hey, i didn't quite get when you ment by that but have you tried using $DOCUMENT_ROOT before your path, that might help it will be something like this require_once('$DOCUMENT_ROOT/test/db.php'); $DOCUMENT_ROOT goes to your first folder that shows up online (where your index page is) From: "Sh

Re: [PHP] very large and long if statement

2004-04-07 Thread Tyler Replogle
he one i wrote...they seem to be exactly the same?? - Original Message - From: "Tyler Replogle" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, April 07, 2004 9:43 PM Subject: RE: [PHP] very large and long if statement > h

RE: [PHP] Cookies

2004-04-07 Thread Tyler Replogle
yes i do but here is a really good tutorial on it http://www.phpfreaks.com/tutorials/120/0.php From: "Wykis" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] Cookies Date: Fri, 2 Apr 2004 16:52:23 +0100 Does Any One Knows How To Set And Get Cookies? -- PHP General Mailing List (http://w

RE: [PHP] very large and long if statement

2004-04-07 Thread Tyler Replogle
hey, i don't know how to make it smaller but should it be if (!empty($_SESSION['add']['type']) && !empty($_SESSION['add']['start_date']) && !empty($_SESSION['add']['end_date']) && !empty($_SESSION['add']['name']) && !empty($_SESSION['add']['county']) && !empty($_SESSION['add']['discription']) && !e

RE: [PHP] Pulling Certain Data

2004-04-06 Thread Tyler Replogle
hey, trying putting at where in your "SELECT * FROM $main_tbl" so it looks like this SELECT * FROM $main_tbl where "whatever" = "somthing" you can also make a limit in "SELECT * FROM $main_tbl" just like this SELECT * FROM $main_tbl LIMIT 4 From: "Jason T. Davidson" <[EMAIL PROTECTED]> Reply-To

RE: [PHP] Not exactly PHP....

2004-04-06 Thread Tyler Replogle
hey, what kind of news group are you talking about. Like a news script where people can post news? and would you like it in mysql or text files? From: "Shimi" <[EMAIL PROTECTED]> Reply-To: "Shimi" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] Not exactly PHP Date: Tue, 6 Apr 2004

RE: [PHP] Re: PHP Access Violation using PEAR::Mail_smtp

2004-04-06 Thread Tyler Replogle
hey, i think the reason you get no reply is becauase no one knows why it happens From: Ben Ramsey <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] Re: PHP Access Violation using PEAR::Mail_smtp Date: Tue, 06 Apr 2004 14:27:08 -0400 I've asked about PHP Access Violation errors before (t

RE: [PHP] can I get at screen size ?

2004-04-05 Thread Tyler Replogle
hey, yes it would take 2 steps i made a script like this before so i know, i stpent much time looking for it, but php doesn't get info like that because it is running on the server and not the computer or viewer's computer From: E.H.Terwiel <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: