RE: [PHP] Problems with post data

2003-03-29 Thread Mark Douglas
Yes, the webserver that works is running apache2, however it's 2.0.44 instead of 2.0.43... I'm upgrading the broken one now to see if that fixes the problem. -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Saturday, March 29, 2003 10:50 AM To: &#x

RE: [PHP] Problems with post data

2003-03-29 Thread Mark Douglas
Just an FYI, 2.0.44 still isn't working on this server, while it does on another... I don't know what to do now, so I'm just going to write code to deal with this bug. -Original Message- From: Mark Douglas [mailto:[EMAIL PROTECTED] Sent: Saturday, March 29, 2003 10:38

[PHP] Array Question

2003-04-01 Thread Mark McCulligh
ay by one date field. Any ideas on how to do link two tables together and sort my a common date field. Thanks, Mark. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Array Question

2003-04-01 Thread Mark McCulligh
. The reason I can't just display one table after the other is that I need the PHP page to have the results ordered by the common date field. I can't link the two tables together in the SQL. Mark. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Array Question

2003-04-01 Thread Mark McCulligh
I have looked at the different JOINs but I can't link any fields together. There is no relationship between the tables. The two table are basically the same table. But the DBA didn't make them one like he should have. Mark. "Skate" <[EMAIL PROTECTED]> wrote in mes

RE: [PHP] $_SERVER[REMOTE_ADDR]

2003-04-02 Thread Mark Charette
192.168.1.1 going to help you, supposing that those values or other address are returned? Mark C. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Which PHP version is stable with apache 2.0.39

2003-04-03 Thread Mark Douglas
2.0.39 and PHP 4.2.x to Apache 2.0.43 and 4.3.0, my life became a whole lot easier as PHP and Apache seemed to behave a lot better together. So beyond upgrading Apache for security reasons, I would recommend using the latest PHP 4.3.x as well. Mark -Original Message- From: Jason Smith

RE: [PHP] Quick Sessions ?

2003-04-04 Thread Mark Douglas
Let's ask the dumb questions first: Is your webserver parsing .html files for PHP? -Original Message- From: Anthony [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 3:03 PM To: [EMAIL PROTECTED] Subject: [PHP] Quick Sessions ? I have an issue. For some reason I can't pass session

RE: [PHP] php.ini file not being updated with install

2003-04-04 Thread Mark Douglas
If you are using php as a DSO, you need to restart your webserver to load the new install. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 9:25 PM To: [EMAIL PROTECTED] Subject: [PHP] php.ini file not being updated with install

RE: [PHP] creating new mail account on a domain

2003-04-06 Thread Mark Douglas
This is entirely dependant on what mail server you are running, how it's configured, and what tools you have at your disposal for controlling it (CLI, web, ...). If you actually want help with this issue, we're going to need a lot more detail. -Original Message- From: Lars Tvedt [mailto:[

[PHP] [FYI] phpbooks.com

2003-06-06 Thread Mark Owen
Hi guys, we set up a new resource for organizing all books on PHP in a quick-to-scan, Google-like center. Hope you enjoy it. http://www.phpbooks.com Mark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [FYI] phpbooks.com

2003-06-06 Thread Mark Owen
gt; the Absolute Beginner" book shows a picture of a Perl book... :) The complete data is retrieved daily from Amazon.com (with their Webservices API) using the keyword "php" for the search. If anyone is interested, I can make available parts of the source code. Mark -- PH

Re: [PHP] [FYI] phpbooks.com

2003-06-06 Thread Mark Owen
site... if and as long as people use it, we'll keep it up. :) Mark - Original Message - From: "Ryan A" <[EMAIL PROTECTED]> To: "Mark Owen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, June 06, 2003 4:03 PM Subject: Re: [PHP] [FYI] phpbook

RE: [PHP] w32api functions?

2003-06-12 Thread Roedel, Mark
Removed? $PHPDIR/ext/w32api still seems to exist in the 4.3.2 I just installed. Did you compile your own, or download a prebuilt binary? --- Mark Roedel | "Blessed is he who has learned to laugh Systems Programmer| at himself, for he shall never cease LeTourneau University

RE: [PHP] How do I replace browser history using Header()?

2003-06-14 Thread Mark Charette
> -Original Message- > From: Neil Freeman [mailto:[EMAIL PROTECTED] > Is there any way that I can do a PHP Header() statement that does the > equivalent of JavaScript's > window.self.location.replace("http://www.mysite.com/mypage.php";)? No. JavaScript (if turned on) is your only choic

[PHP] Good PHP Books

2003-06-16 Thread Mark McCulligh
e basics. Plus something that covers version 4.2 or greater. I don't want to teach them old syntax. If anyone knows for a good beginner book, please let me know, thanks. Mark. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Good PHP Books

2003-06-16 Thread Mark McCulligh
ure create 1 or 2 day workshops on move advance topics like GD, etc.. This course is just to get their feet wet and interested in PHP. I have taught an ASP course for over 5 years and finally convinced the college to let me change it to PHP. Mark. [EMAIL PROTECTED] "Mike Brum" <[EMA

Re: [PHP] Good PHP Books

2003-06-16 Thread Mark McCulligh
I have looked "Programming PHP" and "Web Database Applications with PHP & MySQL' both from O'Reilly. Both look good, but a little out of date. Mark. -- "John Nichel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > There'

[PHP] Re: need help on coding

2003-06-18 Thread Mark Clarkstone
; > > >output : > >message > >--- > >if i want the output to be : > >"message" > > > >i try to used the below code but fail: > > >$data = &qu

[PHP] Help with my code

2003-06-18 Thread Mark Clarkstone
why won't this write? > No Name"; echo "$errorbk"; } else if ($email=="") { echo "Form Erorr >> No e-mail"; echo "$errorbk"; } else if ($input=="") { echo "Form Error >> No Comment found"; echo "$errorbk"; } else if ($wb=="1") { mail($webemail, $subject, $input); } if ($action) { $data = "$name\n$

Re: [PHP] Help with my code

2003-06-18 Thread Mark Clarkstone
Ok thanks everyone I found out the problem "James E Hicks III" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > What is the value of $subject? fwrite() expects the third > value passed to it to be the number of bytes to write. > > James > > > --

[PHP] Re: Array Sorting

2003-06-19 Thread Mark Clarkstone
I found this Great PHP Starter site check it out http://www.htmlite.com/PHPintro.php "Ashley M. Kirchner" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I have an array that looks like this: > > $i = 0; > $item[$i] = array( 'link' => 'http://...', >'image

[PHP] [Newman] Passing an image through a php file.

2003-06-19 Thread Mark Tehara
geTEST/image.php"; cannot be displayed, because it contains errors. This returns this error (above) Yes 1. Image is in the right location. Yes 2. I'm stuck. Any Suggestions would be very good. / Mark /

Re: [PHP] [Newman] Passing an image through a php file.

2003-06-19 Thread Mark Tehara
This seemed to do the trick for me. Thank you. / Mark - Original Message - From: "CPT John W. Holmes" <[EMAIL PROTECTED]> To: "Awlad Hussain" <[EMAIL PROTECTED]>; "Mark Tehara" <[EMAIL PROTECTED]>; "PHP" <[EMAIL PROT

[PHP] clearing cache

2003-06-20 Thread Mark McCulligh
cache clear, so when the user hits the back up button the page has to be reload from the server at which point I can forward them back to page one. Thanks, Mark. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] clearing cache

2003-06-20 Thread Mark McCulligh
wsers cache after it is displayed. Thanks, Mark. "Jeff Harris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Jun 20, 2003, "Mark McCulligh" claimed that: > > |I am building a two page search feature. The user fills out page one, that >

Re: [PHP] [Newman] Passing an image through a php file.

2003-06-20 Thread Mark Tehara
Ahh, the Docs don't tell you that. They are a little weard wehen it comes to that - Original Message - From: "Lars Torben Wilson" <[EMAIL PROTECTED]> To: "Mark Tehara" <[EMAIL PROTECTED]> Cc: "PHP" <[EMAIL PROTECTED]> Sent: Frid

[PHP] Mod_L33T ANYONE! (Virtual Hosts ) alternative READ if you USE Virtual Hosts

2003-06-22 Thread Mark Clarkstone
hey everyone do any of you people use mod_l33t? I do it rocks you can have about 1000 sites on your comp with their own domain & your ram won't even go down 1mb. its easy to setup & its very cool email me or post if you want of info -- PHP General Mailing List (http://www.php.net/) To unsubsc

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

2003-06-24 Thread Mark Tehara
http://www.futurepathsnz.com/webhosting.html Cheap hosting. http://www.aoteahosting.com/ Moew Cheap hosting Free isn't the word. Free is for scabs - Original Message - From: "Denis 'Alpheus' Cahuk" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 25, 2003 12:09 AM Subje

[PHP] Please help !!!!!!!!!!!!!!!!

2003-06-25 Thread Mark Clarkstone
can anyone tell me whats wrong with this script , I don't get errors Or anything it won't process a form right, test it & you'll see what i mean signup.php script $sitename -- Register -- disabled Sorry sign up has been disabled at this present time we apologize for any inconvenienc

[PHP] Please help can anyone figure whats wrong with this?

2003-06-25 Thread Mark Clarkstone
$sitename -- Login --- Error Sorry but the Staff at $sitename are currently configuring the members Area please return soon "; } else if ($allow =="yes") if (!$action) echo " $sitename -- Login Welcome to $sitename, Please Login below Username: Password: Register Forget

[PHP] Install PHP on windows using PHP installler

2003-06-26 Thread Mark McCulligh
, someone told me not to use the PHP installer because it is not secure. Thanks, Mark. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Install PHP on windows using PHP installler

2003-06-26 Thread Mark McCulligh
>From my understanding you can get PHP with CGI to do persistant connection if you install fastcgi. Link about PHP and FastCGI: http://php.weblogs.com/fastcgi_with_php_and_iis Mark. "Php Dot Net" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > depend on whic

[PHP] Re: Sybase and PHP

2003-06-26 Thread Mark McCulligh
extension. Mark. "Michael A Smith" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I want to connect to a Sybase database running on another windoze server > without having to a buy a copy of sybase for linux. How can I compile > PHP to have the syba

Re: [PHP] Re: Sybase and PHP

2003-06-26 Thread Mark McCulligh
Do you have Sybase ASE on windows or Sybase Anywhere. I didn't know that Sybase make a windows version of ASE. We use Sybase ASE on HP UNIX here at work and I have PHP on both Windows 2000 and Sun linked to it. Mark. - Original Message - From: "Michael A Smith" <[EM

[PHP] Timezone functions?

2003-06-30 Thread Mark McCulligh
eZone class, it looks good, but there is no doc or examples on how to use it. Can someone recommend some good functions to using, that work on a windows platform. Thanks, Mark. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Credit card checks?

2002-07-23 Thread Mark McCulligh
t, someone just typing in numbers at random will have a terrible time guessing a number right. I have never seen someone do it let. Then you can use the first character of the number to test the card type. I will see if I can locate the algorithm and email it too you. Mark "Jas" <[

Re: [PHP] Re: Credit card checks?

2002-07-23 Thread Mark McCulligh
$digit -= 9; > $total += $digit; > } > > return ($total % 10 == 0); > } > > -Original Message- > From: Mark McCulligh [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 24, 2002 10:47 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: Credit card c

[PHP] Re-directing

2002-07-24 Thread Roberts, Mark
bout it by conditionally executing a location.href in javascript. It works, but would like to know how to do it in PHP. ~Thanks. Mark Roberts Sr. Systems Analyst LanApps/Web Development The Williams Information Services Corporation 918-573-1706 [EMAIL PROTECTED]

RE: [PHP] PHPMyAdmin interface

2002-07-24 Thread Mark Middleton
t's close) If you leave the install of phpMyAdmin unprotected, your database is completely vulnerable. Does this help? -Mark > I have just recently just signed up for virtual hosting with a MySQL > database. They do not have a PHPMyAdmin interface too access the > database. All the

RE: [PHP] RTRIM() - Won't accept 2nd Param

2002-07-27 Thread Mark Charette
>From the man page: Note: The second parameter was added in PHP 4.1.0 -Original Message- From: Monty [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 27, 2002 7:28 PM To: [EMAIL PROTECTED] Subject: [PHP] RTRIM() - Won't accept 2nd Param When I issue this command to remove any commas at

[PHP] PHP Installation Problem

2002-07-30 Thread Mark Colvin
I have a development web server php 4.0.6 apache and mysql and everything works OK. I installed the same software onto a new server that will be the production server but I hit problems when my scripts try and hit the db on the new server. Comparing the phpinfo details for both, the new server doe

[PHP] PHP Installation Problem

2002-07-31 Thread Mark Colvin
Thanks all. I have now resolved. For future reference, the problem was as you said, I didn't have php configured for mysql support. I traced this back to the installation of the operating system, Red Hat 7.2. Through the graphical installation, all php modules apart from mysql support and odbc sup

RE: [PHP] Re: Dynamically check radio buttons

2002-08-01 Thread Mark Middleton
elements (simply increment a variable with each printing of the form variable... then at the end of the form make ) Then you can make the above for-statement look like this: > > for ($GameIdx = 1; $GameIdx <= $elementcount; $GameIdx++) { Does any of this make sense or help in any way? -Mark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Problem with "" inside the PHP code, due to "?"

2002-08-01 Thread Mark Middleton
> $XML = "Apple"; > echo $XML; > ?> > Not sure if this is the best way, but it worked for me: $XML = "<"."?xml version='1.0' encoding='UTF-8'?".">Apple"; Hope this helps, Mark M

[PHP] StripSlashes Problem

2002-08-02 Thread Mark Colvin
I use the following php code to build a dynamic table retrieving values from a MySQL databases that have been inserted with slashes added - echo ""; The problem is, if the value to be displayed is for example O'Neill, then the output will look something like - Quite correctly, when this

RE: [PHP] StripSlashes Problem

2002-08-02 Thread Mark Colvin
John, Thank you for your reply. My magic_quotes_runtime is set to 'Off'. As you said, I shouldn't have to use StripSlashes but would I still need to use AddSlashes when inserting/updating? I can see the slashes in the database when I look at the tables but I am fairly sure that I do not add slash

RE: [PHP] StripSlashes Problem

2002-08-02 Thread Mark Colvin
John, Thank you. This solves the problem. Petre, Thank you for your reply. I wasn't aware of the difference and will bear this in mind. This e-mail is intended for the recipient only and may contain confidential information. If you are not

RE: [PHP] Re: Dynamically check radio buttons

2002-08-02 Thread Mark Middleton
ent back to all lower case. I cleaned that up, and it seems to work great now. I hope some of this helps! -Mark > > Thanks. I understand. I'm actually a Cold Fusion programmer. > > I've tried what you suggested but can't seem to get it work - > code attached. > H

Re: [PHP] Linux PHP editor

2002-08-09 Thread Mark Gallagher
JJ Harrison\ wrote: > I just switched over to Red Hat Linux from Win2k... > > Only to find my fav editor only works on windows systems... > > could someone suggest a good replacement? Vim. It's even got syntax highlighting: <http://www.vim.org/> -- Mark Gallag

RE: [PHP] Save ability... Duplicate DB entries

2002-08-10 Thread Mark Charette
Or, of course, a selection of fields as a unique key. The insert will fail if there is an exisiting record with that key; you can interrogate the error and report on the exisitence of a duplicate record. The select/lock method is used for update purposes ('select for update' et al.), not to keep

[PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
variable as a database object (i.e. $this->mydb)? I hope my question makes some sense... Your help is appreciated... Mark Armendariz -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
myclass variable = to the db object? ie. class my_class { var $db; function my_class() { include('class_database.php'); $this->db = new database; } ... } or is there a differnet or better way? Thanks Mark "Steve Bradwell" <[EMAIL PR

Re: [PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
That seems more like what I'm looking for.. Thank you, Nick... Mark "Nick Oostveen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > If you are just trying to access a classes functions without creating an > instance of it

Re: [PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
Do you know where I can find more info on how to use the scope resolution operator? My searches aren't giving much (at leant not mcuh regarding php) and in the manual, it only shows up momentarily as a note in the operators section... Mark "Nick Oostveen" <[EMAIL PROTECTED]

RE: [PHP] 4.04 --> 4.1.2 incompatible

2002-08-20 Thread Mark Middleton
pecify a new POST > target. > I've personally had difficulties with this technique, as Netscape browsers didn't return $PHP_SELF the way I had written it. Make sure to make it such that Netscape users can see it too. http://www.faqts.com/knowledge_base/view.phtml/aid/139/fid/6 -Mark -

RE: [PHP] Exiting from an include or required file

2002-08-21 Thread Roedel, Mark
Seems like the easy way, at least in this case, would be to make the second part of your File A an "else" to your "if". -Original Message- > From: Henry [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 21, 2002 9:40 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Exiting from an includ

RE: [PHP] PHP and Windows Active Directory...

2002-08-21 Thread Roedel, Mark
you've got specific questions about that side of things, I'll be happy to pass them along.) --- Mark Roedel | "Blessed is he who has learned to laugh Systems Programmer| at himself, for he shall never cease LeTourneau University | to be entertained." Lon

[PHP] Passing variables between servers

2002-08-21 Thread Mark McCulligh
to the other server. I can't use the GET method. (www.domain.com/form.asp?username=Mark.) because putting the password on the address bar is not an option. The ASP server will redirect them back when they are done on it. It will pass back the variables just in case the session on th

Re: [PHP] Passing variables between servers

2002-08-21 Thread Mark McCulligh
I thought about encrypting the whole querystring then decrypting it on the other server, but I wanted to keep the address bar clean. I wanted the user not to know they just got passed. If all a sudden there was a lot of data in the address bar they will wonder what it is for. Mark

Re: [PHP] Passing variables between servers

2002-08-21 Thread Mark McCulligh
I have read this arcticle too, and yes it will work for PHP to ASP but I have never came across a ASP version like this function to send the information from ASP to PHP. _ Mark McCulligh, Application Developer / Analyst Sykes Canada Corporation

[PHP] Re: Passing variables between servers

2002-08-21 Thread Mark McCulligh
them. They think a web site can use a cookie to break into their computer. They also disable JavaScript a lot too. _ Mark McCulligh, Application Developer / Analyst Sykes Canada Corporation www.SykesCanada.com [EMAIL PROTECTED] - Original Message -

Re: [PHP] Re: Passing variables between servers

2002-08-21 Thread Mark McCulligh
x27;t exist and will have to just use the longer one. Thanks for your input, Mark. _____ Mark McCulligh, Application Developer / Analyst Sykes Canada Corporation www.SykesCanada.com (888)225-6824 ex. 3262 [EMAIL PROTECTED] - Original Message - From: "Ja

[PHP] Mail problem

2002-08-30 Thread Mark Colvin
The script below works on my development web server which sits on our company LAN. When I transfer the script to our isp hosted webserver, the script does not work. I changed 192.168.10.9/iarnaweb/ to read localhost/ for the isp webserver version (I have also tried replacing localhost with the act

RE: [PHP] Re: Mail problem

2002-08-30 Thread Mark Colvin
Manuel, My development platform is linux 7.2 and php4.0.6. The production server is also linux (I think 7.2) but the php version 4.1.1. On your second point, do you mean I should say something like this - header("Location: http://ccmltdcouk.site.securepod.com/test.php";) This is our temporary dom

RE: [PHP] Re: Mail problem

2002-08-30 Thread Mark Colvin
I have some more information that may be relevant to my problem. I compared the phpinfo() from both servers and there is a difference. The sendmail_from variable in the php.ini on my server is set to [EMAIL PROTECTED] The same variable on my isp's ini file is set to 'no value'. Would this stop my

RE: [PHP] Re: Mail problem

2002-08-30 Thread Mark Colvin
Still not resolved. I checked my local php.ini and the sendmail_path variable is commented out. If I do a phpinfo() on the same server, sendmail_path has a value of /usr/sbin/sendmail -t -i ? I don't know where it pick up this value from but I can send emails from this server. The production serve

RE: [PHP] Re: Mail problem

2002-08-30 Thread Mark Colvin
php.ini with my isp. Mark > -Original Message- > From: Erwin [mailto:[EMAIL PROTECTED]] > Sent: 30 August 2002 14:27 > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Re: Mail problem > > > > Am I correct in > > assuming that the SMTP and sendmail_from va

RE: [PHP] Re: Mail problem

2002-08-30 Thread Mark Colvin
I have this set on both boxes. Here are the settings - local box (which does send mail)isp box (does not send mail) sendmail_from me@@localhost.com 'no value' sendmail_path /usr/sbin/sendmail -t -i/usr/sbin/sendmail -t -i SMT

RE: [PHP] About html

2002-08-30 Thread Mark Colvin
Use the tabindex - > -Original Message- > From: kale [mailto:[EMAIL PROTECTED]] > Sent: 30 August 2002 08:45 > To: [EMAIL PROTECTED] > Subject: [PHP] About html > > > Hy, > I have one question about html. > 1. I have a form with 8 textbox. How can I put the tab order? > When I press "tab

RE: [PHP] why do i get this error please tell me?

2002-08-31 Thread Mark Charette
Ahem. Why not check out the MySQL docs for reserved words (they _are_ right there ...): http://www.mysql.com/doc/en/Reserved_words.html PHP Docs are for PHP. MySQL Docs are for MySQL. PHP != MySQL. -Original Message- From: victor [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 31, 200

RE: [PHP] RE: [PHP-DB] RE: [PHP] why do i get this error please tell me?

2002-08-31 Thread Mark Charette
y filed that those words might interfere with... - Victor > www.argilent.com -Original Message- From: Mark Charette [mailto:[EMAIL PROTECTED]] hem. Why not check out the MySQL docs for reserved words (they _are_ right there ...): http://www.mysql.com/doc/en/Reserved_words.html PHP Doc

RE: [PHP] UPDATE Query

2002-08-31 Thread Mark Charette
No, only one db at a time may be updated. The "where" clauses can contain multiple db. -Original Message- From: Sascha Braun [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 31, 2002 7:04 PM To: PHP Mailingliste Subject: [PHP] UPDATE Query I want to know if its possible to update two d

[PHP] PHP 4.2.2 install problem

2002-09-03 Thread Mark McCulligh
-httdp-php-source .phps I couldn't find the lines in the file. If these lines are not there did I do something wrong, or can I just add them. If I can just add them, where to I add them. Thanks, Mark. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.ph

[PHP] Web based FTP client

2002-09-06 Thread Mark McCulligh
nyone know of a good web FTP program in exists or point me in the right direction on how to build one.. Thanks, Mark. _____ Mark McCulligh, Application Developer / Analyst Sykes Canada Corporation www.SykesCanada.com [EMAIL PROTECTED] -- PHP General Mai

Re: [PHP] Web based FTP client

2002-09-06 Thread Mark McCulligh
I create a page that lets the user browse their own computer and the FTP Server using a combo of JavaScript, PHP and HTML frames. I still don't know how to ftp right from the client side browser without using the tag "file" and upload, not ftp. Mark. _____

[PHP] Re: setting javascript variables on url

2002-09-06 Thread Mark McCulligh
ter "=" Then use the method: substr( ) to get the "bar" out of the string. Mark. _____ Mark McCulligh, Application Developer / Analyst Sykes Canada Corporation www.SykesCanada.com (888)225-6824 ex. 3262 [EMAIL PROTECTED] - Original Messag

[PHP] not passing arguments from HTTP GET?

2002-09-11 Thread Mark Setzer
ther PHP functionality seems fine, so I don't think my webserver is in error. The code seems ridiculously simple. Head-scratcher. Thanks for any help, Mark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] REGISTER_SHUTDOWN_FUNCTION() BUG -- Please Fix.

2002-09-17 Thread Mark Charette
27;ll stand a much better chance of getting it included in a future version - along with solving your current problem _and_ getting your name in the list of contributors. Mark C. -Original Message- From: John Holmes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 8:12 AM To: &

RE: [PHP] Re: Image resolution and php

2002-09-18 Thread Mark Charette
Images don't have a resolution per se; display devices have a resolution. Images (the formats you're talking about, anyway) are measured in pixel width and height. The height and width in any units other than pixels of course necessitates conversion - for an easy example, a 300x300 image on a 1200

RE: [PHP] return the amount of records in a mysql databace

2002-09-22 Thread Mark Charette
select count(*) as n from ... where ... -Original Message- From: Philip J. Newman [mailto:[EMAIL PROTECTED]] Can someone point me in the right direction to find out how i can return the amount of records in a mysql databace ? -- PHP General Mailing List (http://www.php.net/) To unsubs

RE: [PHP] Mail problem with more than 1k users

2002-09-23 Thread Mark Charette
I've had no problems using qmail-inject and MySQL to send over 100K emails in a day. I doubt it's an MySQL problem unless you've done something drastically wrong; perhaps you're bandwidth limited? -Original Message- From: Research and Development [mailto:[EMAIL PROTECTED]] Hello. I wrote

RE: [PHP] Encryption Question

2002-09-23 Thread Mark Charette
Just how are you going to decrypt it? Password encryption is ordinarily one-way - you have no choice. You have to compare encrypted passwords. -Original Message- From: Tom Ray [mailto:[EMAIL PROTECTED]] SI want to compare a password to a encrypted password stored in my mySQL database usin

RE: [PHP] getting ip address of the user.

2002-09-24 Thread Mark Charette
This comes up so very often ... The answer is - you may be able to get _an_ IP number for a machine that accesssed your site. It is meaningless as a means of identification: Proxies use 1 IP for a number of users. -Original Message- From: Anil Garg [mailto:[EMAIL PROTECTED]] hi, Can i

[PHP] Re: error: loading extensions / php_xslt.dll on win32

2002-09-30 Thread Mark Johnson
I still seem to be having a problem. When I run depends on my php_xslt.dll it says: "At least one module has an unresolved import due to a missing export function in an implicitly dependent module." When I look, I see a call to _ecalloc from php4ts.dll that is marked with a red icon. I just d

[PHP] Informix Connection

2002-10-03 Thread Mark Colvin
I have php 4.1.2 running on a linux 7.2 box. I want to make a connection to an Informix 7.2SE database running on a HP-UX 10.2 box. My issues are as follows - 1) Do I need informix software of any description running on the linux web server? 2) Can I configure the php informix modules into and up

[PHP] DATE_FORMAT (MySQL function)

2002-10-03 Thread Mark Colvin
I'm not sure if this is a php or mysql issue but I run the following query from a php script - $query = "select d1.code, d1.type, d1.descr, d1.grouptype, d1.cusref, d1.stock, d1.minstock, d1.appmeth, d1.supplier, d1.suppref, d1.leadtime, d1.price, d1.reorder, d1.code1, d1.code2, d1.notes, d1.usr,

[PHP] Re: help on regex

2002-10-04 Thread Mark Harwood
> I am trying to learn regex and could need some help. > > There are 2 function I would need. 1 which returns false if the data does > contain anything else than numbers or fullstops > > I tryed this: > function validate_phone ($phone) { > return (ereg('^[0-9][:punct:]', $phone)); > } try using

RE: [PHP] Execution Time

2002-10-04 Thread Mark Olton
Edit your php.ini, change "max_execution_time" to something greater than 30. Mark > -Original Message- > From: Pong-TC [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 04, 2002 2:44 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Execution Time > > &g

[PHP] Image Problem

2002-10-08 Thread Mark Colvin
I have just upgraded php from 4.0.6 to 4.2.3. Everything works OK apart from the line below - echo ''; The thumbnail.php script uses php functions imagecreate, imagecreatefromjpeg, imagecopyresized. The script created a thumbnail OK before the upgrade and now I get no image. Is this because php

RE: [PHP] Predefined variables not set?

2002-10-13 Thread Mark Charette
In this context it makes no difference whether or not " or ' is used (" allows variable substitution within the quoted string, ' does not) since there's no substitution taking place. Insert a phpinfo() in the top of your code to see all the variables that _are_ being set. -Original Message--

[PHP] preg_grep

2002-10-15 Thread Mark Harwood
Hi All, I've written a inifile class and was trying to improve it but got stuck trying to read all the sections: [Section 1] name=value [Section 2] name=value $Inifile is the inifile read into an array but the following doesn't work: $Sections = preg_grep("/(?<=^\[)([^\[\]]+)(?=\]$)/i", $IniF

RE: [PHP] How many is too many?

2002-10-25 Thread Mark Charette
I'm storing somewhere over 100,000 separate articles on my site, using ht://dig to index them. They're organized as //MM/nn. No performance problems to speak of on a pretty popular non-commercial site (2-3 pageviews/sec, 24x7) whether they just browse through the directories or or use ht://

RE: [PHP] MySQL and images

2002-10-29 Thread Mark Charette
ages) and keeping the image data from being buffered into the database server's memory space can make storage within the database almost as efficient as file storage. Mark C. Mark C. -Original Message- From: Rick Emery [mailto:remery@;emeryloftus.com] In order to speed-up queri

RE: [PHP] Re: File Random Access

2002-10-30 Thread Mark Charette
n non-deterministic; therefore re-writes in place are impossible without OS help in inter-block jumps/relinks and the subsequent waste of file space. The Pick O/S from a long time back allowed something like this if I remember right (Pick Systems is now RainingData markets a high-end database) . M

RE: [PHP] Re: XSLT Sablotron output

2002-11-03 Thread Mark Charette
it to a XML list. Of couse, the sample script to me looks perfectly valid, since HTML isn't required to have newlines and of course newlines within text blocks aren't preserved anyway ... Mark C. -Original Message- From: Daniele Baroncelli [mailto:ubimmc93@;libero.it] Sent: Sunday, Nov

[PHP] Please Help: PHP Cookies Problem on localhost

2002-11-05 Thread Mark Brown
Hi there, the php.net site said I should email you with problems. The basic issue is that I have a user logon screen which works on a remote server but not when developing on the same machine that is a local server. I hold the username and passwords on mysql and ask the user for their username an

RE: [PHP] Wildcard search

2002-11-08 Thread Mark Charette
> -Original Message- > From: Mako Shark [mailto:phpman2000@;yahoo.com] > do I have to do a > readdir() and read the filename of every file until I find an > HTML or until all files have been read. This is what the shell expression supplied by Marco Tabini actually does; doing it in PHP (re

[PHP] register_globals off issues

2002-11-12 Thread Mark Spohr
#x27;form']); } However, this does not work. It appears that you can't unset the $_POST['form'] array element. Does anyone have any suggestions on how to fix this? I know I'm probably missing a few very obvious things here... but I am a newbie. /Mark -- Mark

RE: [PHP] Fractions

2002-11-16 Thread Mark Charette
You gotta be kidding me, no? When did you learn decimals? I think I started by 3rd or 4th grade ... -Original Message- From: Stephen [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 16, 2002 1:36 PM To: PHP List Subject: [PHP] Fractions I'm wanting to make a simple PHP scri

<    1   2   3   4   5   6   7   8   9   10   >