[PHP] List Administrator

2003-07-30 Thread Johnny Martinez
List Administrator, Google spidered the web view to the list and is indexing our email addresses. Any chance you can edit the code to change [EMAIL PROTECTED] to show as user at domain dot com as many of the public message boards do? This will help reduce the spam we get. Johnny -- PHP General

RE: [PHP] List Administrator

2003-07-30 Thread Johnny Martinez
www.phpbuilder.com is doing this. J -Original Message- From: Johnny Martinez [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 11:07 AM Cc: [EMAIL PROTECTED] Subject: [PHP] List Administrator List Administrator, Google spidered the web view to the list and is indexing our email

RE: [PHP] List Administrator

2003-07-30 Thread Johnny Martinez
ack! these folks are doing it too: http://archives.neohapsis.com -Original Message- From: Johnny Martinez [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 11:14 AM Cc: [EMAIL PROTECTED] Subject: RE: [PHP] List Administrator www.phpbuilder.com is doing this. J -Original

RE: [PHP] List Administrator

2003-07-30 Thread Johnny Martinez
I like the list filter suggestion. Many lists do this. Sent on behalf of type thing. J -Original Message- From: Chris W. Parker [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 11:32 AM To: Lars Torben Wilson Cc: Johnny Martinez; [EMAIL PROTECTED] Subject: RE: [PHP] List

[PHP] Javascript multi text box form validation?

2003-07-18 Thread Johnny Martinez
Hi all, I'm having an issue with quotes, slashes, and apostrophes being submitted into text boxes and they are breaking my sql statements. So, I am trying to do two things. 1. javascript form validation to prevent the double quotes and slashes 2. a sql_scrubber function to handle the apostrophes

RE: [PHP] Javascript multi text box form validation?

2003-07-18 Thread Johnny Martinez
doh...RTFM Johnny! Thanks guys! -Original Message- From: Brad Pauly [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 11:07 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Javascript multi text box form validation? Johnny Martinez wrote: Hi all, I'm having an issue with quotes

[PHP] Access Text Field Max Size

2003-07-17 Thread Johnny Martinez
Hi all, I'm using an Access db as the backend for a little app (I know, I know.) I just ran into a problem where the user needs to submit a string that is larger than the max size for text type, 255. Does anyone know how to go beyond this limit and stay on the Access db? Thanks in advance.

RE: [PHP] Access Text Field Max Size

2003-07-17 Thread Johnny Martinez
I figured it out. FYI You can use the Memo datatype which has a max of 65,535 characters vs. the Text datatype which has a max of 255. J -Original Message- From: Johnny Martinez [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 9:40 AM To: [EMAIL PROTECTED] Subject: [PHP] Access

RE: [PHP] Odd Error (PHP4 IIS)

2003-07-16 Thread Johnny Martinez
I see this randomly on my little server. Just hit the refresh button :P J -Original Message- From: Shena Delian O'Brien [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 10:57 AM To: [EMAIL PROTECTED] Subject: [PHP] Odd Error (PHP4 IIS) Hi - Got PHP4 running on IIS as a

RE: [PHP] How to use ph to set meta tags ?

2003-07-15 Thread Johnny Martinez
?php function mAuthor() { $Author = 'Daniel Szasz'; print $Author; }; ? Then use: META NAME=Author CONTENT=? mAuthor(); ? Notice I replaced $Author = Daniel Szasz; with $Author = 'Daniel Szasz'; This tells php to just assign the value to the variable and not to bother performing

RE: [PHP] value not passed

2003-07-15 Thread Johnny Martinez
No value is assigned in the code you listed. What is before this block? If $addDivName isn't given a value then nothing is posted. Are you trying to have the text field populate this info? If so, you are getting your program flow wrong. Johnny -Original Message- From: Joaco

RE: [PHP] HTML email with Outlook

2003-07-15 Thread Johnny Martinez
$headers = MIME-Version: 1.0\r\n; $headers .= Content-type: text/html; charset=iso-8859-1\r\n; Does this help? Johnny -Original Message- From: Tim Thorburn [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 3:48 PM To: [EMAIL PROTECTED] Subject: [PHP] HTML email with Outlook Hi,

RE: [PHP] HTML email with Outlook

2003-07-15 Thread Johnny Martinez
Remember not all email clients support email. Did I read that right or is it a typo? J -Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 4:17 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] HTML email with Outlook Tim Thorburn [EMAIL PROTECTED]

[PHP] htaccess?

2003-07-11 Thread Johnny Martinez
Is it possible to determine who the htaccess user logged in is? If so, how? Can you point me at some articles? Johnny -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Excel Parser

2003-07-10 Thread Johnny Martinez
Hi all, Does anyone know of any free Excel parsing non-COM code available on the net? Just straight php driven? I've found a couple commercial solutions but would like to try this myself or save money. Thanks for any help. Johnny -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Re: Excel Parser

2003-07-10 Thread Johnny Martinez
on www.phpclasses.org. Called php2excel I think, that works too. The PEAR one does formulas too. Mark. Johnny Martinez [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all, Does anyone know of any free Excel parsing non-COM code available on the net? Just straight php driven? I've

[PHP] nlist

2003-07-10 Thread Johnny Martinez
Hi all, Is there a local filesystem-based function comparable to the ftp-based 'nlist' that lists files in a directory? Johnny -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] nlist

2003-07-10 Thread Johnny Martinez
This is it. Thanks guys! J -Original Message- From: Robert C. [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 4:24 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] nlist http://www.php.net/readdir Original Message From: [EMAIL PROTECTED] To: [EMAIL PROTECTED], Subject:

RE: [PHP] image galleries

2003-06-26 Thread Johnny Martinez
The Gallery I recommended can be edited so the thumbnails don't display and you can make the links appear instead. Shouldn't be tough, the info is already there. Just replace the img tag with the a href text. before: a href='images/cars/bmw/pic1.gif'img src='images/cars/bmw/pic1_thumb.gif'/a

RE: [PHP] image galleries

2003-06-23 Thread Johnny Martinez
I highly recommend this Gallery: http://sourceforge.net/projects/gallery I've used it in many webs, it's very fast, modular, handles multiple formats and is fairly easy to customize. Here is a web that I integrated it with: http://www.roundaboutdesigns.com/gallery Johnny -Original

[PHP] HTML...

2003-06-16 Thread Johnny Martinez
Hi all, I'm trying to send an email to multiple recips but for some reason the Select isn't passing multiple options...Does anyone see a problem with this code? Do I an array or something to handle the passed multiples? Johnny page_1.php: html body

RE: [PHP] Redirects in PHP

2003-06-13 Thread Johnny Martinez
try a delayed javascript redirect. location header must be in the header whichprevents your visitor from seeing html...thats irritating. i miss the ASP response.redirect which can be placed anywhere J -Original Message- From: Carl Furst [mailto:[EMAIL PROTECTED] Sent: Friday, June 13,

RE: [PHP] Redirects in PHP

2003-06-13 Thread Johnny Martinez
You can do the cheesy: This page has moved. Please click this link. heheh J -Original Message- From: Carl Furst [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 10:43 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Redirects in PHP I can understand the abuse,

[PHP] POST detection

2003-06-12 Thread Johnny Martinez
Hi all, I have a self referring script that $_POST's two times at the beginning. The problem is that the first time the script comes up those two $_POST vars aren't being submitted and the webserver complains. If I could detect if the vars were passed and if not then skip that would be great.

RE: [PHP] POST detection

2003-06-12 Thread Johnny Martinez
Woot! That worked! Thanks Jason and R'twick! Johnny -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 2:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] POST detection On Friday 13 June 2003 05:08, Johnny Martinez wrote: I have a self referring

RE: [PHP] POST detection

2003-06-12 Thread Johnny Martinez
Will this work for $_GET as well? J -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 2:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] POST detection On Friday 13 June 2003 05:08, Johnny Martinez wrote: I have a self referring script

[PHP] $PHP_SELF

2003-06-06 Thread Johnny Martinez
Hi all, I'm trying to get the path and filename of the script I am running. $PHP_SELF doesn't seem to work. I'm running PHP4 on a Windows 2000 system. Thanks in advance. Johnny -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Redirec.t

2003-03-28 Thread Johnny Martinez
Hi all, Can someone tell me the function to redirect a browser to a specific page? Johnny For example: ? code... code... code finished. redirect(http://www.domain.com/admin.php;); ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Redirec.t

2003-03-28 Thread Johnny Martinez
, March 28, 2003 3:56 PM To: Johnny Martinez Subject: Re: [PHP] Redirec.t No. You have to send header information before you output anything even- before the html. On your document, you have to put it before what is currently line 12. On Friday 28 March 2003 03:39 pm, you wrote: Tried

RE: [PHP] Redirec.t

2003-03-28 Thread Johnny Martinez
Thanks! That worked! Johnny -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 4:53 PM To: Johnny Martinez Cc: '[EMAIL PROTECTED]' Subject: Re: [PHP] Redirec.t Try putting: ob_start(); at the top of your file (before ANY output is done

[PHP] Image Handling

2003-03-12 Thread Johnny Martinez
Hi all, I am working on a store app. On the admin side I want to allow the admin to upload a pic, adjust the size, and create a thumbnail. Does anyone know of any open source image handling routines I can take advantage of for this? The file format will be jpg or even gif. Thanks in advance.