[PHP] funny

2004-06-28 Thread adrian murphy
I hate to put a url in but there are some choice words in the extract. You may have come accross it before but if you are a sys admin u should read this. It's funny unless u know the guy i suppose.hell it's just funny! Its a reply email after the guy was given some helpful advice on installing Imag

Re: [PHP] dynamic table

2004-05-26 Thread adrian murphy
> > >Hiya, > > > >How can i draw a new AFTER FIVE in the following loop > > > >(i want to echo the records in 5 columns width tables whatever the number > of > >records will be fetched) > > > >.. > >echo ''; > > > >while ($myrow = mysql_fetch_array($sql)) > >{ > >echo $myrow[0]; > >} > >echo '

Re: [PHP] dynamic table

2004-05-26 Thread adrian murphy
>Hiya, > >How can i draw a new AFTER FIVE in the following loop > >(i want to echo the records in 5 columns width tables whatever the number of >records will be fetched) > >.. >echo ''; > >while ($myrow = mysql_fetch_array($sql)) >{ >echo $myrow[0]; >} >echo ''; > > >regards $i = 1; echo '' .

[PHP] lynx and crontab

2002-10-15 Thread adrian murphy
my isp lets me control crontab so i've been trying to run a php script every 30 mins. the command is like this: lynx - dump http://www.mysite.com/test.php which gives the error lynx: Start file could not be found or is not text/html or text/plain what do i telll my isp to do to get lynx to sup

[PHP] rewrite condition question

2002-10-08 Thread adrian murphy
RewriteCond %{HTTP_HOST} ^www\.[^.]+\.testsite\.com$ [NC,OR] RewriteCond %{HTTP_HOST} ^[^.]+\.testsite\.com$ will this match http://www.user.testsite.comand http://user.testsite.com sorry.i have no way to test this myself.i'm trying to help out my serv

Re: [PHP] Source code

2002-09-06 Thread adrian murphy
add nl2br() to make it look pretty e.g - Original Message - From: "Roman Duriancik" <[EMAIL PROTECTED]> To: "PHP-General" <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 11:53 AM Subject: [PHP] Source code > How I show in IE source code of html page with php ? > > > roman >

Re: Fw: [PHP] question about Location

2002-09-06 Thread adrian murphy
make sure there is no whitespace before first To: "PHP" <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 11:34 AM Subject: Re: Fw: [PHP] question about Location > Put your code that takes care of the post before the line 2, output the > header and exit. Like this > if($_POST['submit'])

Re: [PHP] why is html code written like this?

2002-09-02 Thread Adrian Murphy
thats xhtml - it's xml comliant html. tags must be closed so a tag like which didn't have a closing tag is written so,for example in php the nl2br() function now produces instead of the old - Original Message - From: "Victor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday,

Re: [PHP] A quick question - Help Please !

2002-08-19 Thread Adrian Murphy
to do it with javascript u could post the form to another local page with a form with hidden fields - send the mail and use onload="" to post the second form. would be a messy way to do it but would work. adrian murphy - Original Message - From: "Justin French" &l

[PHP] mod_rewrite problem

2002-07-18 Thread adrian murphy
Hi, the following code redirects www.usersite.mysite.biz to www.mysite.biz/users/sites/usersite the problem is when the 'www' is left out it doesn't work. could someone help me to fix this? many thanks RewriteEngine on RewriteCond %{HTTP_HOST} ^www\.[^.]+\.mysite\.biz$ R

Re: [PHP] whats wrong with this function

2002-07-03 Thread Adrian Murphy
n > On Wednesday, July 3, 2002, 1:47:05 PM, "Adrian Murphy" wrote: > > whats wrong with this. > > it's getting stuck somewhere > > "Somewhere" isn't very helpful. When asking for help be sure to include as much > information as possilble.

Re: [PHP] whats wrong with this function

2002-07-03 Thread Adrian Murphy
relax friend.i was just asking - Original Message - From: "1LT John W. Holmes" <[EMAIL PROTECTED]> To: "Adrian Murphy" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, July 03, 2002 2:08 PM Subject: Re: [PHP] whats wrong with this functi

[PHP] whats wrong with this function

2002-07-03 Thread Adrian Murphy
whats wrong with this. it's getting stuck somewhere function urls_clickable($string) { for($n=0; $n < strlen($string); $n++) { if(strtolower($string[$n]) == 'h') { if(!strcmp("http://";, strtolower($string[$n]) . strtolower($string[$n+1]) . strtolower($string[$n+2]) . strtolower($string[$

[PHP] about file permissions + cuteftp

2002-06-23 Thread Adrian Murphy
hi, how come when i make a dir thus mkdir($basedir,0777); cute can't then chmod or delete said dir. also vice versa : when i create a dir with cute with 777 access php can't do anything with it. it's very annoying.

Re: [PHP] Smart URLs

2002-06-02 Thread Adrian Murphy
> whenever a URL like > mysite.com/thumbnails/funny/4 > i called the thumbnails.php is excuted, in which you I think if you call it thumbnails.php it won't work. however if the script is simply called thumbnails then it'll work.of course you then must make sure that 'thumbnails' is parsed as php.

Re: [PHP] what does this mean in plain english?

2002-05-17 Thread Adrian Murphy
The ? in this senario is called the ternary operator basically shorthand for an if/else statement e.g $theValue = ($theValue != "") ? "'" . $theValue . "'" :"NULL"; is the equivalent of if($theValue != "") { $theValue =$theValue ; } else{ $theValue ="NULL"; } - Original Message - From:

[PHP] looking for training course in london

2002-05-17 Thread Adrian Murphy
Hi, anyone know/done good php training courses in london thx adrian

Re: [PHP] apache redirect and request

2002-05-17 Thread Adrian Murphy
gt; > Then parse the data as you need to to get to the root of the domain. > > -Jared > > -Original Message- > From: Adrian Murphy [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 17, 2002 9:20 AM > To: [EMAIL PROTECTED] > Subject: [PHP] apache redirect and

[PHP] apache redirect and request

2002-05-17 Thread Adrian Murphy
Hi, my isp has set up an internal redirect that resolves www.mysite.biz to www.mysite.com how can i check if the request was for the .biz version. thx

[PHP] search engine indexing and redirects

2002-05-17 Thread Adrian Murphy
Hi all, firstly: i know nowt about search engines/crawlers spiders really. i'm giving users fake sub-domains i.e www.username.mysite.com gets redirected to www.mysite.com/users/sites/username via mod_rewrite/wildcard dns so i'm wondering if search engines will have any trouble indexing those site

[PHP] load testing utility

2002-04-29 Thread Adrian Murphy
anyone have a recommendation for a good free/cheap load testing utility for php/mysql sites? thanx adrian

[PHP] what do i put in .htaccesss to achieve this

2002-04-15 Thread Adrian Murphy
Hi, I use wildcard dns to point all requests at the root e.g whatever.mysite.com goes to root etc.however i'll like to redirect these requests to mysite.com/users/sites/whatever so what do i put in the .htacces file bearing in mind that i want requests just for mysite.com to be left alone. thanx

[PHP] what do i put in .htaccess to achieve this

2002-04-15 Thread Adrian Murphy
Hi, I use wildcard dns to point all requests at the root e.g whatever.mysite.com goes to root etc.however i'll like to redirect these requests to mysite.com/users/sites/whatever so what do i put in the .htacces file bearing in mind that i want requests just for mysite.com to be left alone. thanx

[PHP] using .htaccess to repoint

2002-04-10 Thread Adrian Murphy
Hi, my isp uses wildcard dns to point to the root. I want to put a .htaccess file in the root to repoint the wildcard requests to a sub-folder but leave the normal request alone. plese help or tell me an article i can read(i've looked but haven't found one specifically dealing with this.) adrian.

Re: [PHP] Passing a variable invisibly via a href?

2002-04-02 Thread Adrian Murphy
or use javascript or if you really wanted you could encrypt the variable pass it via the url and then decrypt it on the next page! to avoid a reload put no-cache in the header. - Original Message - From: "Daniel Alsén" <[EMAIL PROTECTED]> To: "PHP List" <[EMAIL PROTECTED]> Sent: Tuesday,

[PHP] what should be my wishlist?

2002-04-02 Thread Adrian Murphy
Hi I'm creaating my wishlist for my php build for my isp. I've got the usual stuff gd/ftp/xml etc and was wondering what else should i ask for e.g. i've never used pear but it might be useful? curl etc.

[PHP] preload dynamic image problems

2002-03-06 Thread Adrian Murphy
This seems strange to me but i promise it's happening. I'm dynamically creating images for a page ,calling them so: I'm also preloading the mouseover versions. the problem is that the images are not being preloaded: javascript problem you say? the strange thing is that when i use the source of th

[PHP] mod_rewrite

2002-03-01 Thread Adrian Murphy
As a side issue,there may be a lot of database updating involed in the site and i'm wondering should i use mysql(i am at the moment). any real world examples of the performance of mysql?I know it's great for selects. Thanx adrian murphy

Re: [PHP] if(isset($submit))

2002-02-28 Thread Adrian Murphy
just use an input type=hidden and call it submit,thats what i do - Original Message - From: "jtjohnston" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 28, 2002 5:32 AM Subject: Re: [PHP] if(isset($submit)) > So I can forget using type="image" :( > Wah, it's

[PHP] implement yourname.mysite.com redirection

2002-02-18 Thread Adrian Murphy
Hi, I'd like to implement a system whereby people have a subdomain on my site like so: yourname.mysite.com I've been reading the apache docs that say you can do this via virtual hosts. Can I do it so 'yourname' can be anything - where all requests are sent to the same page where i can parse the ur

Re: [PHP] Change gif image with php

2002-02-16 Thread Adrian Murphy
button.php fot this to work you need to upload VERDANAB.TTF to a folder called 'fonts' and you call the image like this: to draw 'hello' on a button called 'mybutton.gif' stored in 'images' folder - Original Message - From: "Rodrigo Peres" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECT

Re: [PHP] Re: center text on image

2002-02-14 Thread Adrian Murphy
bruary 14, 2002 6:48 PM Subject: [PHP] Re: center text on image > > If you're using GD2, try looking at ImageTTFBox() and ImageFTBox(). They'll > give you the coordinates for a bounding box around the text. Use them in > relation to the image to center it properly. >

[PHP] center text on image

2002-02-14 Thread Adrian Murphy
I was wondering if it's possible to centre text precisely on an image.I'm thinking I need to get the width of of the string in pixels?,take this away from imagesx(image) and devide by 2 to get x value. so has anyone achieved this?

[PHP] Php contract dublin ireland

2002-02-13 Thread Adrian Murphy
Hi dublin php people here's a 1 month contract i can't do. PHP /MySQL Vacancy Many thanks for registering your details with us during this last 12 months . I have outlined below details of an urgent PHP/MySQL contract which you may be interested in. If you feel the role is suitable please

Re: [PHP] image generation issues

2002-02-11 Thread Adrian Murphy
ruary 12, 2002 3:38 AM Subject: Re: [PHP] image generation issues > Hi > Some of MS fonts wont work, try downloading some freeware fonts. > Tom > > > At 01:24 PM 2/12/02, Adrian Murphy wrote: > >tried everything suggested and still get 'could not read font' oh we

Re: [PHP] image generation issues

2002-02-11 Thread Adrian Murphy
ve it from the server using: > unlink("some_name.png"); > hope this helps. > Hugh > > - Original Message - > From: "Martin Towell" <[EMAIL PROTECTED]> > To: "'Adrian Murphy'" <[EMAIL PROTECTED]>; > <[EMAIL PROTECTED]

Re: [PHP] image generation issues

2002-02-11 Thread Adrian Murphy
i get 'Could not read font in..' i set permissions to 777 on both file and folder - Original Message - From: "Martin Towell" <[EMAIL PROTECTED]> To: "'Adrian Murphy'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, Feb

[PHP] image generation issues

2002-02-11 Thread Adrian Murphy
Hi, I'm using the code in the manual to draw text on a png. but Its not working - ImageString() works but not ImageTTFText() I uploaded arial.ttf from windows to fonts/ folder Any Ideas: as a side note: PNG's - any real disadvantage to using them instead of gifs - not withstanding the compuserve

Re: [PHP] Novice question - please help

2002-02-11 Thread Adrian Murphy
use str_replace() instead of ereg_replace() ...in the same way described - Original Message - From: "brendan conroy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 11, 2002 9:15 PM Subject: [PHP] Novice question - please help > Hi, >THANK YOU for reading this.I wo

Re: [PHP] Newbie: how to upload files in safe mode?

2001-07-11 Thread Adrian Murphy
I'm afraid you'll have to run your upload script as a cgi. try adding this to the top of your page: #!/usr/bin/php you'll probably have to change the file extention to .cgi and put the script in your cgi-bin (not sure about that). you should change ISP ,unless it's a free one you're using. --

Re: [PHP] Help with a variable

2001-07-09 Thread Adrian Murphy
isset() function - Original Message - From: "James Bartlett" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 09, 2001 12:43 PM Subject: [PHP] Help with a variable Hi, Is there some way that I can check to see if a variable is present? e.g. if (variable is not present)

Re: [PHP] addslashes problem ..

2001-07-06 Thread Adrian Murphy
maybe i don't undestand correctly but try: $string = str_replace("","\\n",$string); i.e escape the escape character \\n - Original Message - From: "Chad Day" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 4:38 PM Subject: [PHP] addslashes problem .. > I have t

[PHP] simple message board (no login)

2001-06-29 Thread Adrian Murphy
anyone got a simple threaded message board where the poster doesn't have to login but can leave there name. OR anyone modified the nuke forum so anonymous users can leave their name? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: [PHP] Why a javascript have problem if it is dynamic load?

2001-04-09 Thread Adrian Murphy
I can't solve your problem but here's an alternative javascript that works in both IE/NS so u might want to give it a try: www.eudos.com/temp/onchange.htm hope it works. - Original Message - From: Carfield Yim <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 09, 2001 11:4

Re: [PHP] function return

2001-04-06 Thread Adrian Murphy
should work(works for me).probly something simple. "; } ?> - Original Message - From: Kurth Bemis <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 06, 2001 4:10 PM Subject: [PHP] function return > > i'm trying to make all my include files into functions for > manag

[PHP] Problem with unset($PHP_AUTH_USER );

2001-04-03 Thread Adrian Murphy
I use a login script with the header() function and $PHP_AUTH_USER etc. the problem is once i've logged in once ,i refresh the page i stay logged in. i want to do testing with different privileges so i want to be asked for a username and password each time i've refreshed the page.I thought unset($

[PHP] why some dll's don't work

2001-04-02 Thread Adrian Murphy
Certain dll's i try to use simply refuse to work. php.ini is edited correctly. php_ftp.dll works php_gd.dll don't php_ldap.dll works php_oci8.dll don't(with oracle 8i personal inastalled) etc. whats going on.all the requiste dll's are in the right folder. -- PHP General Mailing List (http://ww

Re: [PHP] Active-X

2001-03-28 Thread Adrian Murphy
allegedly this works,but i haven't tried it and can't remember where i got it but i used google,of course: http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0 ,0" id=ebusiness width=191 height=174>