[PHP] Mail Function

2008-11-03 Thread Will W
Hello all,I did a search and did not find anything I was looking for. What is the limitation of the max emails that the mail function can send to? Thanks, Will

Re: [PHP] [PHP Header] Right-Click Download in Firefox showing php filename

2008-08-04 Thread Will
Thanks everyone. I looked into the Firefox browser forums/support and found that the "Right-Click >> Save Link As" does not send the header response, as it will take the file as-is. So in this example, it sees the 'download.php' and then takes that as the default name. I

[PHP] [PHP Header] Right-Click Download in Firefox showing php filename

2008-08-03 Thread Will
I followed some of the examples that was on PHP header() http://us3.php.net/manual/en/function.header.php I am trying to have users download a file named 'Setup.msi', however under a PHP file with the sent header information, the default name to the user will be 'ApplicationSetup

RE: [PHP] phpmyadmin

2008-07-10 Thread Will Fitch
This is more of a SQL question that PHP. If you want to grant all privileges to abc to database xyz (minus GRANT), you should run these queries: CREATE DATABASE xyz; GRANT ALL PRIVILEGES ON xyz.* TO 'abc'@'somehost' IDENTIFIED BY 'somepassword'; -Original Message- From: Ronald Wiplinge

RE: [PHP] can you give me example of website using postgresql database?

2008-07-01 Thread Will Fitch
Touché, salesman. -Original Message- From: Lester Caine [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2008 10:21 AM To: php-general@lists.php.net Subject: Re: [PHP] can you give me example of website using postgresql database? Will Fitch wrote: > Assuming that a system should swi

RE: [PHP] can you give me example of website using postgresql database?

2008-07-01 Thread Will Fitch
: [PHP] can you give me example of website using postgresql database? Will Fitch wrote: > The purchase of MySQL by Sun should actually give you more comfort. They > will be able to attach more money and developers to the project. Remember, > the advantage of open-source is not just that it&#x

RE: [PHP] Re: can you give me example of website using postgresql database?

2008-07-01 Thread Will Fitch
Then in that case I agree. I develop an inherited, large-scale, in-house system that utilizes PostgreSQL. It does the job, but I can't wait until I get the time to convert it to MySQL. As with any RDMS, Postgres has its advantages: controlling sequences, aggregates, custom operators, custom ty

RE: [PHP] can you give me example of website using postgresql database?

2008-06-30 Thread Will Fitch
The purchase of MySQL by Sun should actually give you more comfort. They will be able to attach more money and developers to the project. Remember, the advantage of open-source is not just that it's free, but that you may freely modify it for your purpose (keeping in mind the restrictio

RE: [PHP] Encription

2008-06-30 Thread Will Fitch
Have you considered mcrypt then base64? -Original Message- From: Stefano Esposito [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2008 2:37 PM To: php-general@lists.php.net Subject: [PHP] Encription Hi all, i need to encrypt a sensible string to pass it whit GET method. I need that to

RE: [PHP] SOAP - function does not exist?

2008-06-30 Thread Will Fitch
It doesn't look like the SOAP service at http://new.vehicletransportusa.com/v2/services/URS.QuoteServices.php doesn't actually implement a function called "getOrderHistory". Can you verify that? From: Dan Joseph [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2

RE: [PHP] SOAP - function does not exist?

2008-06-30 Thread Will Fitch
) } ) I have gone over the wsdl countless times, and do not see anything wrong it. Can anyone tell me where to begin trouble shooting this? I can post code from the client and class if need be. I guess I'm mainly trying to figure out: Does this point to a wsdl pr

RE: [PHP] How to check if $string contains Hebrew characters?

2008-06-25 Thread Will Fitch
The strtr will be better as he's not looking to actually replace the characters. Looping through each character and running strtr will work, but you should run a timer on both the regex and strstr. See which is faster. -Original Message- From: M. Sokolewicz [mailto:[EMAIL PROT

RE: [PHP] How to check if $string contains Hebrew characters?

2008-06-25 Thread Will Fitch
7;),array('t','u','v'),$string); This will replace all instances of a,b and c with t, u, and v respectively. This removes the regex resource. -Original Message- From: Nitsan Bin-Nun [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 10:33 AM To: ph

RE: [PHP] load balancer question

2005-12-20 Thread will
nothing about availability and only care about the performance then you've got alot of options. Of course to load balance your app you need to centralize your data onto a dedicated data server. You'll have to put some thought into your session issue, and any other data r

[PHP] Connecting to PHP

2005-12-19 Thread will
terface or anything of that sort? thanks, will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Stream lib vs Socket lib

2005-12-11 Thread will
P socket clients and servers? Also, Is there any way to add the functionality of the stream_socket_enable_crypto() to a program written using traditional socket library (any available classes or extensions that would help add that functionality?). thanks alot! will -- PHP General Mailing List (htt

[PHP] Socket Select()

2005-12-09 Thread will
xplain why, and maybe point me to some examples where it would be useful to use the write fd set? thanks alot, will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] xml parse engine written in php

2005-09-12 Thread Will
Jasper Bryant-Greene wrote: Will wrote: Free for the taking, here's a simple, lenient (flawed?) xml parse engine written in php if anyone is interested in expanding such a thing. http://fribbler.us/code/ Not to put down your efforts or anything, but what's wrong with SimpleXM

[PHP] xml parse engine written in php

2005-09-12 Thread Will
Free for the taking, here's a simple, lenient (flawed?) xml parse engine written in php if anyone is interested in expanding such a thing. http://fribbler.us/code/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] quickForm

2005-07-09 Thread Will
Hi, can someone say where I might post this. Hi, I am using a quickform form and it works well except when I use it by using an include in another file. In that case when the file is called in (by way of the include statement in the parent file) it seems that the quickform gets processed as tho

Re: [PHP] Wierd PHP Problem

2005-02-23 Thread Will Beers
Matthew Fonda wrote: $HTTP_*_VARS is deprecated in PHP5, so if the server is running PHP5, this code won't work. Instead, you should use $_POST On this subject, is there anything 'wrong' with using $_REQUEST instead of specifying between $_POST and $_GET? Will Beers smime.p7s

RE: [PHP] making FORM dissapear when successful login

2005-01-09 Thread Will Merrell
On Tuesday, January 04, 2005 9:05 PM, JHollis wrote: > I had this code working the way i wanted it to (as far as > correct username and password allowing successful login) > ...but what i want to happen now is when a user > successfully logs it it will make the login > form disappe

Fwd: Re: [PHP] How to delete text with replies for archive pages

2004-12-28 Thread Will McCullough
__ Do you Yahoo!? Yahoo! Mail - Easier than ever with enhanced search. Learn more. http://info.mail.yahoo.com/mail_250--- Begin Message --- That will result in the same problem, some lines after replies, then would be

[PHP] How to delete text with replies for archive pages

2004-12-27 Thread Will McCullough
bscribe, e-mail: php-general-unsubscribe protected> >For additional commands, e-mail: php-general-help > >To contact the list administrators, e-mail: >php-list-admin > So in this case we want to delete each one of those lines and the >

RE: [PHP] Cannot compile

2004-08-03 Thread Will Collins
Try running 'make clean' before you run 'make' again. I had a problem when trying to run 'make' for the umpteenth time during my recent troubles, and apparently it was because things got a little too cluttered, and this did the trick. Will -Original Message

RE: [PHP] Upgrade PHP? [SOLVED]

2004-08-02 Thread Will Collins
have a working Slackware installation (after the headaches, I decided to install Slackware 10 on my unused server and compile everything from source to see if I could get it to work). Thanks for your time everybody. Will -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Mo

RE: [PHP] Upgrade PHP?

2004-08-02 Thread Will Collins
Won't work: Fatal error: Call to undefined function: imagecreatefromjpeg() -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 4:09 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Upgrade PHP? On Tuesday 03 August 2004 03:21, Will Collins

RE: [PHP] Upgrade PHP?

2004-08-02 Thread Will Collins
To test it, I used: ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-gd --with-zlib-dir=/usr/include -Original Message- From: bruce [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 3:39 PM To: 'Will Collins'; [EMAIL PROTECTED] Subject: RE: [PH

RE: [PHP] Upgrade PHP?

2004-08-02 Thread Will Collins
What now, guys? Will -Original Message- From: Support [mailto:[EMAIL PROTECTED] Sent: Sunday, August 01, 2004 10:11 PM To: Will Collins; [EMAIL PROTECTED] Subject: Re: [PHP] Upgrade PHP? I've dealt with a similar problem with Mandrake. Some distros have their own idea of where t

[PHP] Upgrade PHP?

2004-08-01 Thread Will Collins
ring returned by 'phpinfo()' (assuming that the correct path info was included) with no luck. Does anyone have any tips on an easier way to upgrade? Thanks, Will

RE: [PHP] PHP error catching....

2004-07-20 Thread Will Collins
Error handlers? Plus, you can set up PHP to log errors to a file in 'php.ini'... -Original Message- From: Scott Fletcher [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 9:48 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP error catching What are those php functions that catch the

RE: [PHP] Problem of a beginner with Array

2004-07-20 Thread Will Collins
Name each of the checkboxes "grid[]" (Your Text), then in your processing script, $_POST['grid'] will be an array with the values of all the checked boxes (assuming at least one was checked - otherwise it won't be set). If you want a limit on the number of boxes yo

RE: [PHP] textarea/display question...

2004-07-20 Thread Will Collins
I've always gotten errors when trying to use the "value" property of a textarea. Put the value info between the tabs. -Original Message- From: bruce [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 12:59 PM To: [EMAIL PROTECTED] Subject: [PHP] textarea/display question... hi.. i

RE: [PHP] Book Required

2004-07-17 Thread Will Collins
I apologize for requesting a read receipt. Won't happen again - I hope. :) -Original Message- From: Will Collins [mailto:[EMAIL PROTECTED] Sent: Saturday, July 17, 2004 2:27 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Book Required PHP & MySQL Web Development is a pretty good

RE: [PHP] Book Required

2004-07-17 Thread Will Collins
PHP & MySQL Web Development is a pretty good one. It does a good job of giving a fairly thorough explanation on things, considering the broad range of topics to be covered. I never have really been a fan of the "Fast and Easy... " series, or the "Learn * In 24 Hours" seri

[PHP] Is PEAR worth the effort?

2004-06-30 Thread Will Merrell
ation instructions my eyes glaze over and roll up into my head. Before I fight my way through this learning curve I want to know if its worth it? Is this the wave of the future or just a flash in the pan? Thanks, Will Merrell -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] How to duplicate this functionality?

2004-05-14 Thread Will Collins
t when you up the "duration" and use it for totally different pages too... it's just really fun to play with. Just stick it into the header of your page. Will Collins -Original Message- From: Will Collins [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 9:17 PM To: [EMA

RE: [PHP] How to duplicate this functionality?

2004-05-14 Thread Will Collins
It's fairly simple: at the top of your script, have a block of code similar to the following, and have the link point to -- $_SERVER['PHP_SELF']."?rm_id=".$id_to_be_deleted -- I'll leave out all but the essential elements. Will Collins -Original Mess

[PHP] Custom session functions

2004-04-16 Thread Will
e garbage function. Thanks Will array("test1_1","test1_2"), "test2" => array("test2_1","test2_2")); echo(â$_SESSION[testing1]"); foreach($_SESSION['testing2'] as $key => $value) { echo("$key - ");

[PHP] includes

2004-04-05 Thread Will
to read from the tmpl and inc?? I can get the include files to work as long as they are in the root (include "tmpl/header.htm"). I hope I explained it right. :) ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Hinding URL[Scanned]

2004-03-31 Thread Will
Thanks everyone! :) I was not sure what it was called. Thanks again, ~WILL~ PS: Sorry I thought you could do something in PHP. -Original Message- From: Michael Egan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 8:43 AM To: Will; [EMAIL PROTECTED] Subject: RE: [PHP] Hinding

[PHP] Hinding URL

2004-03-31 Thread Will
browser bar. Is this possible?? I hope so!!! ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail headers

2004-03-20 Thread Will
Hello all, I searched for this but did not find what I was looking for. I want to send a file from a directory, i know how to do that in txt but I would like to send a doc or rtf document. Is the header like this: $headers = "Content-Type: multipart/mixed"; Thanks, ~WILL~ -- P

RE: [PHP] Sessions

2004-03-16 Thread Will
It was a link problem!!! :) DUH What a dummy I am! :) ~WILL~ -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 11:38 PM To: Will Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Sessions Will wrote: > Hello All, > I am having a problem.

[PHP] Sessions

2004-03-16 Thread Will
Hello All, I am having a problem. When I log into a forum it says "Page Cannot Be Displayed" I looked at my logs and did not find anything. I did a search everywhere and found nothing. Any help would be appreciated, ~WIIL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visi

RE: [PHP] catching URL#target params

2004-03-15 Thread Will
David, The only thing I can think of is using Javascript to set a cookie with the variable from window.location.href and then using PHP to pick up the value. Rather crude but it might work. Will -Original Message- From: David T-G [mailto:[EMAIL PROTECTED] Sent: 15 March 2004 14:08 To

RE: [PHP] Mail

2004-03-14 Thread Will
Thank you very much!!! That was it ~WILL~ -Original Message- From: Jason Davidson [mailto:[EMAIL PROTECTED] Sent: Sunday, March 14, 2004 2:40 PM To: Will Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Mail Check the manual to be sure, but it appears that you have the arguments for the

[PHP] Mail

2004-03-14 Thread Will
doing wrong??? Thanks in advance, ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: mail() and passwords

2004-03-09 Thread Will
I figured out how to do it. This is what I put in the php.ini file: SMTP = mydomains_smtp_server.com sendmail_from = [EMAIL PROTECTED] This worked great!!! It is sent right to a SMTP which is setup to authenticate all outgoing mails. ~WILL~ -Original Message- From: Manuel Lemos

[PHP] mail() and passwords

2004-03-09 Thread Will
How do I modify the following to except a password for the SMTP server? [mail function] SMTP = localhost sendmail_from = [EMAIL PROTECTED] Please help!! Thanks in advance! ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mail Function

2004-03-08 Thread Will
Please help me with this. Can someone give me an example of their php.ini on the settings of the mail function. ~WILL~ Will wrote: Hello All, I have a question. I installed PHP on a windows XP machine. When I try to send a form it says: "Warning: mail(): sendmail_from not set in php.i

[PHP] Mail Function

2004-03-07 Thread Will
ilheader); require ("tmpl/send_form.htm"); ?> The recipient is in the setup.php file, just to let you know. My sendmail_from is as follows: sendmail_from = [EMAIL PROTECTED] Please help :) ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Image resize on upload

2004-02-26 Thread Will
Thanks!! I found some documentation on the GD library. I most likely be posting again!! :) ~WILL~ [EMAIL PROTECTED] wrote: gd seems to work fine ? even nconvert via command line does a good job and it resizes gif too I'll second that one, I wrote a shell script in PHP to resize images,

Re: [PHP] Re: Image resize on upload

2004-02-26 Thread Will
Thanks everyone. I got GD2 to work quite well! The thumb look pretty good. ~WILL~ Ed Curtis wrote: Make sure you use imagecreatetruecolor() with GD when resizing images or you'll get some undesirable results. Imagemagick's convert and mogrify worked well for me although I was r

[PHP] Re: Image resize on upload

2004-02-25 Thread Will
. ~WILL~ Will wrote: Hello all, I looked at the PHP manual and found a lot of things to do with images but I did not seem to find out how to resize an image on upload. Can anyone help?? Thanks in advance, ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Image resize on upload

2004-02-25 Thread Will
Hello all, I looked at the PHP manual and found a lot of things to do with images but I did not seem to find out how to resize an image on upload. Can anyone help?? Thanks in advance, ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: htacess

2004-02-25 Thread Will
Thanks Manuel!! I will look into that. ~WILL~ Manuel Lemos wrote: Hello, On 02/24/2004 06:50 PM, Will wrote: I tried to search PHP net for this but found nothing. I am doing an install script and I want to write a htaccess file to the server so people can login in to there admin section

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

2004-02-24 Thread Will
I know the feeling!!! I wish they would go away!!! ~WILL~ Jimbo wrote: I've just received a 419 scam email to the email address I setup for posting to this forum. Looks like the safeguards have failed :-( James Holt -- www.jholt.

[PHP] htaccess

2004-02-24 Thread Will
how do you do the password thing?? Thanks in advance, ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] htacess

2004-02-24 Thread Will
how do you do the password thing?? Thanks in advance, ~WILL~ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HELP!!!

2004-02-21 Thread Will
uot;") { header ("Location: main.php"); exit; } else { @copy($_FILES[application][tmp_name], "$path" .$_FILES[application][name]) or die( "Sorry Could not copy file!!" ); @copy($_FILES[application1][tmp_name], "$path1" .$_FILES[application

[PHP] Upload and database

2004-02-20 Thread Will
Hello all, I tried to search the archives and PHP.NET and did not find anything or I missed it Anyway here is my question: I want to upload 2 files to the database. Perferribly the whole image into the data base (blob). I cannot figure it out. When I check the database it is empty!! :( Thanks

[PHP] addslashes & stripslashes

2004-01-28 Thread Will
any data that contains a \ in it before I’ve never noticed it’s not made any difference before. So Does this basically mean that there is no point using stripslashes on the data you extract from the database.   Or am I just being an idiot J   Thanks   Will     I've stopped 46,346

[PHP] mycrypt on local doesn't decode but does on web server?

2004-01-24 Thread Will
? What am I missing none of the functions are returning any error #s / Falses etc.   Code is attached.   Thanks for any help or advice   Will   I've stopped 46,300 spam messages. You can too! One month FREE spam protection at www.cloudmark.com   <>-- PHP General M

Re: [PHP] Text area with an echo command

2003-10-17 Thread Will
Eugene, Thank You much :) I really appreciate it!!! Will PS: I am curious on other guys and gals would do this code. Eugene Lee wrote: On Sat, Oct 18, 2003 at 01:27:05AM -0400, Will wrote: : : Thanks for the code but it comes up a parse error. I know I am new, but : this is driving me

Re: [PHP] Text area with an echo command

2003-10-17 Thread Will
; "; I know it does not look right, can I take out the "echo", or must that stay?? Thanks for everyones help on this!! :) Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Text area with an echo command

2003-10-17 Thread Will
l_query($sql,$conn) or die(mysql_error()); header("Location: main.php"); exit; But my question is when I hit the submit button and check the database it has nothing in the "notes" field. I tried a hidden field in the modify script but it did not work. Will John Nichel wro

Re: [PHP] Text area with an echo command

2003-10-17 Thread Will
That worked great!! But how do I get the info from the modify script back into the database?? With that code: $value It does not populated the database with the new text that was modified. Is there another way to do it?? I am learning PHP on my own so bare with me. Will John W. Holmes

[PHP] Text area with an echo command

2003-10-17 Thread Will
, Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] I.P. range authentication

2003-03-18 Thread Will Bown
I am having trouble verifying if a user is within a specified I.P. range. The idea is that if a user is at a library within an I.P. range like 231.55.*.* and their I.P. address is 231.55.122.226 a session would be registered for them. See my code below. This works but only for some I.P.'s in a rang

[PHP] Session testing on local machine

2002-09-25 Thread Will Marshall
appreciated. Thanks Will -- ICQ # 133565401 === "So many times it's hopeless dark and grey No way out And other times it's hope that saves the day" - - Jon Schaff

RE: [PHP] can you get the name of an object from within it's own class?

2002-09-17 Thread Will Steffen
wots that?) hey im also a n00b so don't take my word on it - actual mileage may vary :-P Cheers Will > -Original Message- > From: Marek Kilimajer [mailto:[EMAIL PROTECTED]] > Sent: 17 September 2002 11:49 AM > To: PHP > Subject: Re: [PHP] can you get the name of an

RE: [PHP] a href...

2002-09-13 Thread Will Steffen
Use & a href="bug_detail_user.php?id=$id&reporter_id=$reporter_id" Some reading around post methods and passing data between scripts might be in order to familarize yourself with all the syntax etc. Hope this helps --Will > -Original Message- > From: Meltem

RE: [PHP] Need some help with array sorting

2002-09-13 Thread Will Steffen
? Thanks Will > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 13 September 2002 08:41 AM > To: [EMAIL PROTECTED] > Cc: timo stamm; Will Steffen > Subject: Re: [PHP] Need some help with array sorting > > > Hi Will, > > >

[PHP] Help with pattern matching.

2002-09-12 Thread Will
brain to a php newbie before my computer gets both barrels? Thanks Will

RE: [PHP] Re: Cry for help

2002-09-12 Thread Will Steffen
o previous experience with an OO language and the OO tuts as you will find are pretty thin on the ground and of varying quality - thinking of writing a few myself when I get a breather :-) GL and happy reading :-) Cheers Will > -Original Message- > From: Chad Winger [mailto:[EMAIL PRO

RE: [PHP] Re: Cry for help

2002-09-12 Thread Will Steffen
may vary - insert coin to generate more bs Cheers Will > -Original Message- > From: Chad Winger [mailto:[EMAIL PROTECTED]] > Sent: 12 September 2002 03:34 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Re: Cry for help > > > I have no idea what that means, sorry :) &g

[PHP] Need some help with array sorting

2002-09-12 Thread Will Steffen
Ahem *tap* *tap* is this thing on? Hi everyone, my name is Will and I've been addicted to php for 3 months and 21 days... *grin* I'm hitting a bit of a brick wall in a current project - the answer is probably quite simple, but I'm still newish to php and coding in general so b

Re: [PHP] any ideas : Unexpected character

2002-02-14 Thread Will Hives
/php/new admin/do_addauthor.php on line 14 > > Can you post the section around Line 14 from do_addauthor.php so we can take > a look at it ? > > Regards > > > Girish > -- > www.girishnath.co.uk > > > - Original Message - > From: "Will Hives"

[PHP] any ideas : Unexpected character

2002-02-14 Thread Will Hives
very grateful for any ideas. Cheers Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] file upload and change name

2002-02-09 Thread will hives
Hi, Does anyone know how to change the name of and image and save the new name to the database? I know how to do a standard file upload, but can't seem to get the new new to be saved into the databaseany pointers would be fantastic. Cheers Will -- PHP General Mailing List

[PHP] Limit 15 where "Newest"

2002-02-04 Thread WIll
link on the bottom of the page that will select the next 15 items in the database? Thank you. --WIll -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Upload script with user admin

2002-02-01 Thread Will Hives
That's cool. How do you then delete and edit that image? Will in article [EMAIL PROTECTED], Lerp at [EMAIL PROTECTED] wrote on 2/1/2002 5:07 PM: > Hi there, here's a bit of code to get you started. It includes a form that > allows uploads, and the code to process t

Re: [PHP] Editing uploaded file

2002-01-31 Thread Will Hives
On Thursday 31 January 2002 05:13, will hives wrote: >> I have this version when I add the image on the add article page, and that >> works fine... >> >> >> >> if ($picture != 'none') { >> >> $path = "/home/€€/€€€

Re: [PHP] Editing uploaded file

2002-01-30 Thread will hives
$picture_name"; $imageFile = $path1.$new_pic_name; copy($picture,$path . $new_pic_name); it's just when it comes to editing the image??? Sorry about this is must be like banging your head against a brick wall. Cheers Will in article [EMAIL PROTECTED], Jason Wong at [EMAIL PROTECTED]

Re: [PHP] Editing uploaded file

2002-01-30 Thread will hives
Jason, here it all is thanks for this... Cheers Will HTML EDIT UPLOAD PAGE: my contact management system: add a contact "> Name & email information   name: " size=35 maxlength=75> email:

Re: [PHP] Editing uploaded file

2002-01-30 Thread will hives
The code attached was just the code which ran the html form there is another page which contains all the form details, this code just does the editeing and shows you what it's done. Cheers Will in article [EMAIL PROTECTED], Jason Wong at [EMAIL PROTECTED] wrote on 30/1/02 3:20 am:

[PHP] Editing uploaded file

2002-01-29 Thread will hives
it does not do. Does any one have any ideas why the image upload is not working...it echos the new name but does not upload the new file Thanks in advance Cheers Will PHP: http://www.main.net/php/";;

Re: [PHP] move_uploaded_file() query

2002-01-25 Thread will hives
in article [EMAIL PROTECTED], Jason Wong at [EMAIL PROTECTED] wrote on 25/1/02 3:14 pm: > On Friday 25 January 2002 17:35, Will Hives wrote: > >> Sorry for my past ignorance using this news site forum I can only out this >> down to my lack of knowledge. >> >>

[PHP] move_uploaded_file() query

2002-01-25 Thread Will Hives
pointers on how this small problem can be solved. I hope this makes more sense than previous threads I have submitted. Cheers Will Here is the script as it stands: $sql = "INSERT INTO $table_name (id, name, email, picture_name) VALUES ('$id', '$name', '$email&

[PHP] nearly there...just one more

2002-01-24 Thread will hives
I have managed to set the file upload to change the name of the file when uploading, but when the file is uploaded it takes the original file name not the renamed one image upload box is named 'picture' how do I get it to call the new file name Thank you for your help so far everyone...

Re: [PHP] Increment help..please

2002-01-24 Thread will hives
t ful if you could amend the script (as I am a newb I can work things out once they have been done if that makes any sense) cheers will my contact management system: add a contact Name & email information  

[PHP] Increment help..please

2002-01-24 Thread will hives
please help I'm a newb and this is really messing with my head. All I want to know is what do I need to add to this script to allow it to increment the ID number. pleasee. thank you very much for a simple boy!!!! Will my contact management system: add a contact

[PHP] file upload with story

2002-01-21 Thread will hives
I add that code into this...any help would be fantastic. Cheers Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] News story with image - help

2002-01-21 Thread Will Hives
in article [EMAIL PROTECTED], Nick Wilson at [EMAIL PROTECTED] wrote on 1/21/2002 1:36 PM: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > * On 21-01-02 at 14:32 > * Will Hives said > >> I guess you must all be getting very bored with this type of que

[PHP] News story with image - help

2002-01-21 Thread Will Hives
upload image script ok but can't work out how to link the image to the story ID. Is there any examples or does anyone have any suggestions? Thanks for reading this. Cheers Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com