[php-list] Shopping Cart without the Cruft

2007-01-27 Thread bobsawyerdotcom
I'm looking for a PHP-based cart solution that can be integrated directly into an existing site --- NOT modified to kinda-sorta fit an existing site's layout. In other words, I do NOT want: - OSCommerce - ZenCart - X-Cart or any of the other look-alike / work-alikes. I'm looking for something t

[php-list] MODERATOR NOTE: Time to check out

2006-12-15 Thread bobsawyerdotcom
Well gang, after about 3-1/2 years of moderating this group, I'm about ready to step down. It's become more of a chore or obligation that I have to attend to more than something I *want* to do. So it's time for me to move on. But, I do not want to leave you all in limbo. So, if you have any intere

[php-list] Re: Help me for Form Handler....

2006-08-13 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "yogeshromantic" <[EMAIL PROTECTED]> wrote: > the submit button the data should update in Mysql database table. but > i want to validate the textfield if it Null/Blank proper message > should display on the screen This is how I do it, and I suspect you'll get a

[php-list] Re: Query similar to ".. where column_name contains x"

2006-04-05 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "bab8680" <[EMAIL PROTECTED]> wrote: > > I know that there is a four character minimum on full-text searches in > MySQL. From the MySQL Documentation: "Any word that is too short is > ignored. The default minimum length of words that are found by > full-text searche

[closed] Re: [php-list] JOB POSTING: Atlanta, GA

2006-02-23 Thread bobsawyerdotcom
I should have added, "with my apologies for posting PHP-related jobs in the first place." I didn't expect them to create such an intense negative reaction. Hell, I assumed that a couple of PHP-related jobs, posted by a long-time, contributing member of the group would be appreciated by at least a f

[php-list] Re: Can XMLHttpRequest work with PHP + webserver on Linux

2005-12-01 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "Gurudatta Raut" <[EMAIL PROTECTED]> wrote: > > Please Help, solve my mystery. > > XMLHttpRequest was invented by MS, so is it possible > to have AJAX in PHP using XMLHttpRequest with Apache > on Linux ? > XMLHttpRequest is not server-dependent -- it's a function

[php-list] Re: problem regarding opening titlebarless window

2005-11-06 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "gyani_out" <[EMAIL PROTECTED]> wrote: > i want to open a window that do not have TITLEBAR, and also window > should not have in maximize form. > > i have to display a AD in that window. > i tried lots of options, but it is not working. > > Please solve my proble

[php-list] Re: Job search

2005-10-13 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, hghjhg ghggh <[EMAIL PROTECTED]> wrote: > Hello , > I have 1 year of experience in PHP/Mysql, Your message has been deleted b/c you crossposted it to several other groups at the same time. Which, as has been discussed here numerous times, is a no-no. Best of luck

[php-list] Call to a member function on a non-object

2005-09-13 Thread bobsawyerdotcom
I have the following function declared: -- function rescount($flag) { $cnt = $db->get_var("select count(SR_ID) from STATION_RESOURCES where SR_FLAG = '$flag'"); if ($cnt > 0) { $cntl = ' [' . $cnt . ']'; echo $cntl; } } -- and am passin

[php-list] Re: Permissions-Help needed

2005-09-08 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "Tim Makins" <[EMAIL PROTECTED]> wrote: > Is there anyone who can advise on permissions, or suggest a work- > around ? Since you were kind enough to respond to my question, I'll give yours a go. :-) Is there anything in frame 'a' - particularly in the Javascript y

[php-list] Re: bookings

2005-08-11 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "infosakis" <[EMAIL PROTECTED]> wrote: > Online Booking e-commerce system for PHP wabsite wanted enabling > guests to book rooms dynamically online. > > A SQL Server will be used to store the room rates and availability as > well as the guest reservations and we

[php-list] UPS XML shipping calculator

2005-08-03 Thread bobsawyerdotcom
I am desperately seeking assistance or URLs to existing scripts that calculate shipping costs via UPS using their new XML format. I downloaded their documentation, but it's so bloated and technical that I can't make any sense of it. I've googled till I'm blue in the face but can't find anything e

[php-list] Re: File upload not working

2005-08-01 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, Parag Bhavsar <[EMAIL PROTECTED]> wrote: > check the server variable > $_SERVER["PATH_INFO"] varible using phpinfo and according > first give hardcode path in the destfile file and then try > uploading. Hi Parag, I actually had the hard-coded path in there to be

[php-list] Re: File upload not working

2005-08-01 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, Brian Cummiskey <[EMAIL PROTECTED]> wrote: > Bob, try the copy function. > http://us2.php.net/copy > > there's a bunch of useful tips on that page as well. Hey Brian, no go on copy() or rename(). This code: if (!copy($startfile, $destfile)) { echo 'This didn't

[php-list] File upload not working

2005-08-01 Thread bobsawyerdotcom
I hate scripting file upload forms. The code below uploads the file to the temp directory, but does not move the file into the images directory. Permissions on the directories are correct; the test file is small (about 1K); no errors are returned in $_FILE['photo']['error']; yet the file never ap

[php-list] Re: Hello. New to PHP. I have a few basic questions

2005-07-19 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, Taksam <[EMAIL PROTECTED]> wrote: > -What is the "official web site" for PHP? (something like java.sun.com) www.php.net > -I have done a search in the web and... it looks like there are lots of free hosting that support PHP and very few (just two or three) t

[php-list] preg_replace

2005-07-11 Thread bobsawyerdotcom
Granted, my knowledge of regex is still pretty low (although it's slowly improving), but I'm having a helluva time getting the following to work: $buffer="http://www.php.net"; $foo = preg_replace('([a-zA-Z0-9\/\.\:\?\=\&\;]*)', '\1', $buffer); Basically, I need to prepend '' onto the end of the

[php-list] Re: mortgage calculator

2005-07-08 Thread bobsawyerdotcom
> >anyone know where i can get a free mortgage calculator written in > >php? > Tony - I just searched Google for PHP mortgage caculator. > There are MANY available! But frankly, I would use a Javascript-based solution, unless you wish to save the results to the server/database. A Javascript cal

[php-list] output buffering

2005-07-08 Thread bobsawyerdotcom
I'm playing around with output buffering, but I'm not having any luck with the test files I'm goofing around with. I have a link to an XML RSS 2.0 file. What I'd like to do is open the file, read it into the buffer, and while it's in the buffer, modify any and all contents using a simple eregi_r

[php-list] UPDATE: Brain-Freeze causing $_SESSIONs problem

2005-05-04 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "bobsawyerdotcom" <[EMAIL PROTECTED]> wrote: > Here's what I WANT to do, but can't seem to achieve: > > - if the user comes from one station to the site, the session should > reflect the station var throughout his visit to t

[php-list] Re: Brain-Freeze causing $_SESSIONs problem

2005-05-04 Thread bobsawyerdotcom
--- In php-list@yahoogroups.com, "Dominicus Donny" <[EMAIL PROTECTED]> wrote: > Im confused with the following lines... > why do you have to put a conditional 'if', > if they both lead to the same action? > which is: > $_SESSION['station'] = $station; > I think I've got some similiar problem ba

[php-list] Re: Hi there : Mail prob debug.

2005-04-05 Thread bobsawyerdotcom
> What does the -q tag do ? > & any other tags I can use ? Usage: php [-q] [-h] [-s [-v] [-i] [-f ] php [args...] -a Run interactively -C Do not chdir to the script's directory -c | Look for php.ini file