[PHP] Re: PHP suexec: html files as PHP.

2003-07-29 Thread erythros
it depends on what webserver your provider is running. all they have to do is add .html to the list of files parsed by php. Joan McGalliard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I'm getting a little desperate here, and running out of places to ask. My hosting company

[PHP] Re: How can I add records to database every 60 minutes???

2003-07-30 Thread erythros
even when youre not online? is the database online or local? another question is how is the game played in php? i take it scripts are being called over and over right? if so then add a time function to one of those scripts. when gameplay starts load the time to mysql (or a file) and then

Re: [PHP] Re: How can I add records to database every 60 minutes???

2003-07-30 Thread erythros
yea... if no one hits the website for hours then only a few updates will occur. you could however write a very small javascript to call on a php script every hour. Skate [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] i take it scripts are being called over and over right? if so

[PHP] Re: Getting browser resolution??

2003-08-22 Thread erythros
you don't need to get the screen resolution for that. if you still want the screen resolution you'll have to look at javascript. just assign the pictures width to 25%. no matter the screen size, or resolution ie will set the picture to 25% of the window. it's pure html... img src=image.jpg

Re: [PHP] WEB HOST NEEDED!!!!!

2003-06-24 Thread erythros
he should ask for a pony too while he's at it... Jay Blanchard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] Like I said, I need a web host. It MUST support PHP, mySQl and sending emails, optional. It shouldn't have any ads (pop-ups, ads), but I will allow if it has watermarks

[PHP] Re: print html code

2003-07-02 Thread erythros
try echo ie... echo pthis is a paragraph/pr\n\; the r\n\ is a return character and newline character. Karina S [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I want to make a php site which can generate a html code and display it on the screen. (Display the code itself.) I

[PHP] Re: PHP user group

2003-07-02 Thread erythros
there are php user groups hmmm... there should a listing for that. someone should start a list... i wish there was one near me... Erich Kolb [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Does anyone know of a PHP user group near Gurnee, IL. I found one in Chicago, but its a

[PHP] Re: have some free time?

2003-07-02 Thread erythros
your links don't work... Kyle Babich [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Any php programmers out there have a little free time? I've been trying to find the bug in my logging system forever and I've all but given up. If anyone else wants to try their luck then...

[PHP] Re: print html code

2003-07-02 Thread erythros
try echo ie... echo pthis is a paragraph/pr\n\; the r\n\ is a return character and newline character. Karina S [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I want to make a php site which can generate a html code and display it on the screen. (Display the code itself.) I

[PHP] Re: have some free time?

2003-07-02 Thread erythros
your links don't work... Kyle Babich [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Any php programmers out there have a little free time? I've been trying to find the bug in my logging system forever and I've all but given up. If anyone else wants to try their luck then...

[PHP] Re: PHP user group

2003-07-02 Thread erythros
there are php user groups hmmm... there should a listing for that. someone should start a list... i wish there was one near me... Erich Kolb [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Does anyone know of a PHP user group near Gurnee, IL. I found one in Chicago, but its a

Re: [PHP] Get Rid of this Crook

2003-07-03 Thread erythros
that was the coolest thing i've read in a while... (considering i just read the latest harry potter book) what a way to get those guys back. Adam Voigt [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Well spamming doesn't get them any money. I believe I read they use this info to

[PHP] proxy... of a sorts.

2003-07-09 Thread erythros
i wrote this in couple of hours. i havent really begun to develope it yet. it works, but i'm sure there's probably better/safer/faster ways to do certain parts. would anyone like to point out a few? ?php /*PROXY.PHP\ * Check to see if a web address is

[PHP] Re: Unknown Syntax

2003-07-11 Thread erythros
two equal signs means 'equal to' so '!==' means 'not equal to' one equal sign sets a value. ie... x = 2; // x is set to the value of 2 if(x!==3) // checks if the value of x is not equal to 3 as for != i've never seen it with just one equal sign... Chris Morrow [EMAIL PROTECTED] wrote in

[PHP] Re: PHP CSS

2003-10-06 Thread erythros
people will still be able to see your style sheet, by folling the link to your css file. how are you apling the variables in the first place? now that you are link to a style sheet what has changed (apperance wise) with the output of the page. is the formating not being applied? can you send a

Re: [PHP] Re: PHP CSS

2003-10-07 Thread erythros
Oct 2003 13:18:00 -0500 erythros [EMAIL PROTECTED] wrote: people will still be able to see your style sheet, by folling the link to your css file. how are you apling the variables in the first place? now that you are link to a style sheet what has changed (apperance wise) with the output

Re: Re[2]: [PHP] Re: PHP CSS

2003-10-08 Thread erythros
Tom Rogers [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Thursday, October 9, 2003, 1:37:57 AM, you wrote: RR On Tue, 7 Oct 2003 23:22:02 -0700 RR Raquel Rice [EMAIL PROTECTED] wrote: On Tue, 7 Oct 2003 17:06:13 -0500 erythros [EMAIL PROTECTED] wrote: you probably

Re: Re[4]: [PHP] Re: PHP CSS

2003-10-08 Thread erythros
it sounds like she using the ini as a user css. so wouldn't it be simpler to just rename the ini to css, rather than use php to get values from the ini and apply them to the current css? then all she has to do is follow davids adivce for the users css files: snip Write a script that opens your

Re: [PHP] MP3 Ripping

2003-10-27 Thread erythros
dont need php - mysql to do this. there is a mp3 streaming sever built for winamp. look for shoutcast. it'll everything you need, with little leg work from you. Burhan Khalid [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Steve Vernon wrote: [ snipped ] So what I have done is

[PHP] split()

2003-11-12 Thread erythros
trying to use split(). i want to split a paragraph by sentence. so of course i used split('[.!?]', $data). but then i noticed i use ... or every now and again at the end of a sentence. i don't know how to do this though... -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] split()

2003-11-13 Thread erythros
PROTECTED] On Wed, Nov 12, 2003 at 09:48:37PM -0600, erythros wrote: : : trying to use split(). i want to split a paragraph by sentence. so of course : i used split('[.!?]', $data). but then i noticed i use ... or every now : and again at the end of a sentence. i don't know how to do this though

[PHP] ereg_replace()

2003-11-15 Thread erythros
ok, so i'm stupid. how do i replace all '? ' with '?? ' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ereg_replace()

2003-11-15 Thread erythros
chris and justin, you guys rock. thanx for pointing towards str_replace(). my code works now. thanx! Justin French [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Sunday, November 16, 2003, at 02:31 PM, erythros wrote: ok, so i'm stupid. how do i replace all

[PHP] proxy of sorts

2004-03-10 Thread erythros
two files proxy.php and image.php proxy downloads the website and image downloads the pictures proxy.php-- ?php /\ * Check to see if a web address is present...* * iproxy is where the imagaes