Hello guys,
I need that badly! I need a suggestion, advise, solution or whatever that
might help!
I need a Site Search script for a page that mostly have .PHP files some are
dynamic and some are not.
Basically i was using WebGlimpse but whenever I search using it, It shows
the source code of the
Thanks - the hassle is - my isp doesn't use mysql - so i have to use text
files I reckon :-)
swadie
~~~
Steve Wade
Youth Outreach Coordinator
Fusion Australia Ltd (Sydney North)
ABN 26 001 273 105
+61 2 9477 1110
-Original Message-
From:
Have you got an example of how to use the -b switch.
I am not up with lingo when it comes to unix.
""Jason Brooke"" <[EMAIL PROTECTED]> wrote in message
050d01c0daa6$9ebbada0$[EMAIL PROTECTED]">news:050d01c0daa6$9ebbada0$[EMAIL PROTECTED]...
> Why don't you just use the -b switch and do it in on
Why don't you just use the -b switch and do it in one hit?
- Original Message -
From: "YoBro" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, May 12, 2001 3:32 PM
Subject: [PHP] Simulate the Enter key in Unix with PHP
> Hello,
>
> I have been trying to get PHP to execute
Hello,
I have been trying to get PHP to execute some code to add users to the
htpasswd file.
So far I have this
system ("htpasswd /users/website/.htpasswd jim");
My browser receives the unix data that reads : Adding user jim printed to
the browser.
Then you are usually prompted for a password i
I was just looking at Hallmark Channels' website, and noticed them to be using PHP,
wow, PHP has rocketed to something, eh.
--
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 administ
(it's been about 12 hours since I sent this, and havent seen it come
through, so I'm re-building/re-sending it... 'cause I need some help on
this)
I'm confused. I'm bemuttered. I'm pulling my hair out.
I have a page which processes a membership request, and includes the
following code:
from /
Yamin Prabudy wrote:
> Hi there
> I like to know can i grep a page say on http://www.somedomain.com
> (just the index.html)
> if it's possible can any guru out there enlight me how to do that
I haven't done what you're trying myself, but the info on these two pages
might be helpful:
http://www.
dude!
I have already looked there, but the examples are not clear based on what i
am wanting to do.
I was hoping somebody in this group has done it before so I could see some
example code as to executing a statement like in my first message.
"Jack Dempsey" <[EMAIL PROTECTED]> wrote in message
[
www.php.net/system
check the archives as well for questions relating to this specific issue
-jack
YoBro wrote:
>
> Hello,
>
> Is there any way to execute unix commands as though it was being done at the
> shell.
>
> I am wanting to add users to an htpasswd file.
> Usually I use at the unix s
Hello,
Is there any way to execute unix commands as though it was being done at the
shell.
I am wanting to add users to an htpasswd file.
Usually I use at the unix shell:
> htpasswd /users/jim/.htpasswd username
then are prompted for the new password
ie > password
then are promoted again to
Hi there
I like to know can i grep a page say on http://www.somedomain.com
(just the index.html)
if it's possible can any guru out there enlight me how to do that
Yamin Prabudy
===_ _ ___
___ __ / |/ / __/_ _ / Internet
/ _ \/ __/ _ \// _ / /
Jason Caldwell wrote:
> > The " will be translated back into "
> > when your form is submitted.
>
> ?? I don't have to convert back?? -- when I eventually submit my Hidden
> Input Fields into my mySQL DB, they'll be converted back to " ?
>
> Confused
If you have , then when you submit your
> The " will be translated back into "
> when your form is submitted.
?? I don't have to convert back?? -- when I eventually submit my Hidden
Input Fields into my mySQL DB, they'll be converted back to " ?
Confused
"Young Chi-Yeung Fan" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECT
"Johan Vikerskog (ECS)" wrote:
> ok.
> I have this problem of mine which i dont know how to solve. therefor i use this
>great mailing list.
>
> Lets say i have a URL that looks something like below. This URL was generated from a
>program that starts netscape with this adress. This adress is of
Jason Caldwell wrote:
> If I have a text box and enter data into that text box with "quotes" around
> some of the text... and I want to throw that text into a HTML Hidden Input
> Field (on my next screen for example) -- the quotes will somehow jackup or
> truncate that text... because HTML uses "
> I am looking for code to verify a phone number has been entered correctly on
> a form field. Requirements would include the area code: xxx-xxx-.
You should use a regex for this. Something like...
if (ereg ("[0-9]{3}-[0-9]{3}-[0-9]{4}", $number)) {
print "good\n";
} else {
> So my question is, should I (or, really, can I) encode it? My thinking is I
> want to encode it with the htmlspecialchars() function... however,
> eventually, all the data within the Hidden Input Boxes will be stored into
> my mySQL database, so I'll want to decode it before I send it (restorin
> which works fine until I add this at the top
>
> if($HTTP_REFERER != "http://www.hardcorehosting.com/video/test.html";)
> {
> exit();
> }
>
Check to make sure $HTTP_REFERER is being set. Just create another script
that has something like:
Then create a link to this new script from the te
If I have a text box and enter data into that text box with "quotes" around
some of the text... and I want to throw that text into a HTML Hidden Input
Field (on my next screen for example) -- the quotes will somehow jackup or
truncate that text... because HTML uses "quotes" within in the Hidden In
One way:
$phone = ereg_replace("[^0-9]", "", $phone);
if(!ereg("^[0-9]{10}$",$phoneHome")) {
echo "error";
}
You could also check the string length after removing all non-numbers.
Kirk
> -Original Message-
> From: Claudia Smith [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 11, 2001
Hello,
I found asp2php to be a great tool. Does anyone know of a way to make it
convert a whole directory or more than one file at a time?
Brandon
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To
I am looking for code to verify a phone number has been entered correctly on
a form field. Requirements would include the area code: xxx-xxx-.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
On Fri, 11 May 2001 17:28:25 -0500, WebMaster
([EMAIL PROTECTED]) wrote:
>I did :( went character by character and could find not extra
spaces.
>
>At 06:16 PM 5/11/01 -0400, Michael Kimsal wrote:
>>Check for extraneous spaces in your script.
>>
>>Tim Schulte wrote:
>>
>> > Hi there -
>> >
>> >
At 21:40 10/5/2001 -0400, [EMAIL PROTECTED] wrote:
>why isnt this working
>
>i need to get 5 values updated in a table called 'user_polls'
>
>how do I do this?
>i have
>
>UPDATE user_polls WHERE id = '$id' VALUES($1, $2. and so on
your statement is incorrect... the correct UPDATE syntax is:
I did :( went character by character and could find not extra spaces.
At 06:16 PM 5/11/01 -0400, Michael Kimsal wrote:
>Check for extraneous spaces in your script.
>
>Tim Schulte wrote:
>
> > Hi there -
> >
> > I am having some weird problems here. I am try to write a script that
> > will che
Check for extraneous spaces in your script.
Tim Schulte wrote:
> Hi there -
>
> I am having some weird problems here. I am try to write a script that
> will check to see where a movie file is being called from. I want to define
> which web page I will allow a movie to be called from, and blo
Hi there -
I am having some weird problems here. I am try to write a script that
will check to see where a movie file is being called from. I want to define
which web page I will allow a movie to be called from, and block all others.
The script so far looks like this:
The file gets called li
> I have a " in the middle of the encoded string. How can I solve this
> problem?
You need to use addslashes().
http://www.zend.com/manual/function.addslashes.php
Regards,
Sean
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional comman
> I have some jpgs I'd like to send as attachments with automatically
> generated (via PHP) e-mails. Does anyone have any suggestions as to how
> I might go about this?
Check this out: http://www.zend.com/codex.php?id=103&single=1
Regards,
Sean
--
PHP General Mailing List (http://www.php.n
Hi all,
I want to set up one virtual server with many domains pointing to it which
serves pages depending on the domain name.
Here is how i see it:
1) 3 domains pointing to 1 virtual server, eg. www.foo.com www.bar.com and
www.blah.com
2) If user visits http://www.foo.com/contact.phtml then th
Hi all!
Can I only have one session per user / internet explorer? Or is it
possible to seperate sessions let's say from script to script?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact t
Hello,
I am woking in PHP an recently got a SQL2000 database that I need to work
with. What my question is ... is does anyone know how to make a printable
data model so I have something to look at while I program.
Thanks
Brandon
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
I'm using encode/decode with PHP to crypt my database.
Until now was OK, but I one string, and the MySQL return the string this
(without the []...):
[Oõ#M¼ô«~àý~Ô"bëÿ9S" Z ]
The fact is I can't insert this encode string into MySQL table! My select:
select decode("Oõ#M¼ô«~àý~Ô"bëÿ9S" Z ", "lP
There is a list on yahoo groups for PHP employees.
It's primarily intended to be a place for employers looking for PHP people
to post listings too. Spare pickings so far, but it's not been publicized
much yet.
http://groups.yahoo.com/group/phpjobs
"Altunergil, Oktay" wrote:
> I'm looking for
If I do echo($HTTP_SERVER_VARS["SERVER_ADDR"])
I get the expected server address ***WITHOUT A SLASH AT THE END***
eg. "my.server.address"
---
If I do echo($PHP_SELF)
I get the expeted URL relative the the server ***WITH O-N-E SLASH** at
beginning.
eg. "/expected/url/relative/doc_name"
-
On Fri, May 11, 2001 at 05:07:57PM -, SED wrote:
> Before I try it, can anyone tell if the execution-time of the script start
> when upload finish or when it starts? (I referring to the script that
> receives the uploaded file and handles it). It its the later one, what can I
> do when I want
I reserved this domain a while back, but I still haven't put up a site. One
of these days I'll make it into a useful tool, but I just haven't had the
time.
This is the closest thing out there right now that I know of:
http://phpbuilder.com/people/
Stewart
==
Hello
I have some jpgs I'd like to send as attachments with automatically
generated (via PHP) e-mails. Does anyone have any suggestions as to how
I might go about this?
Thanks
Matt
--
Matt Adams <[EMAIL PROTECTED]>
Service Technician, Altair Electronics
Voice <613.384.3876> FreeBSD/OpenBSD/
I am not sure but i think you have to find a dll extension out there for
sockets
Unfortuantely i don't know any sites, google would be your best bet
- Original Message -
From: "Todd" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 11, 2001 8:16 AM
Subject: Re: [PHP] Is the
There's also the free version of Mascon ( www.scibit.com ) and a free
application MySQLFront (www.mysqlfront.de) .
The former has some report generation functionality like Crystal Reports.
Oktay Altunergil
-Original Message-
From: scott [gts] [mailto:[EMAIL PROTECTED]]
Sent: Friday, May
Hi,
I am looking for a cheap hosting plan that supports PostgreSQL (hopefully
7.1) with PHP4 on a unix platform (BSD prefered, Linux would be OK though).
It would be nice if phpPgAdmin was already configured with the account. But
if not, that's ok, I can set it up myself. This is only for the dev
I'm looking for a site like that too.. Is there a php-employment kind
mailing list?
Oktay Altunergil
-Original Message-
From: Jack Dempsey [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 11, 2001 2:40 PM
To: [EMAIL PROTECTED]
Subject: [PHP] phpjobs.com
anyone know what the deal with it is
On Fri, May 11, 2001 at 10:24:02AM -0500, Jacky wrote:
> I got series of string value like this 1,2,3. And the seires are
> dynamic dynamaic, which means it is not always 1,2,3 but could be
> more, but always in this format that is separated by "," . How do I
> pick each of value in the series a
Could YOU use an EXTRA $5000 per month? - OR MORE!
We can offer you the "OPPORTUNITY OF A LIFETIME".
YOU could make THOUSANDS OF DOLLARS each month without any selling
experience, stock, investment or phone calls EVER again.
All you need is a PC with Internet access and the desire to be
rich.
On Thu, May 10, 2001 at 10:42:10PM -0300, Christian Dechery wrote:
> as I've seen PHP running as Apache module cannot create or update files...
> it gives me 'permission denied'...
> so I've tried these solutions:
>
> * fopen("ftp://user:[EMAIL PROTECTED]/directory/newfile.ext","w";);
> this actu
phpMyAdmin
and
phpMyEdit
are two free PHP MySQL thingies.
check out http://www.phpwizard.net/
> -Original Message-
> From: Anuradha Ratnaweera [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 10, 2001 11:52 PM
> To: Augusto Cesar Castoldi
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP] "F
On Thu, May 10, 2001 at 10:27:55AM -0400, shaun wrote:
> is there a limit to the number of fields one can put in an array??
> heres the code im using to create the array
>
> $arrResIDs = explode(",",$RESID,300);
> now $RESID has at least 100 different values in it but when i print out the
> array
On Wed, May 09, 2001 at 06:13:17PM -0700, Dexter wrote:
> Does the array parameter of ereg actually return strings matched? I
> tried to read a file looking for a string using ereg and wanted to put
> the matched strings found in an array. Doesn't seem to be happening
> with the following.
>
>
anyone know what the deal with it is? i'm trying to find some work for
the summer (been REAL hard) and noticed that the site is "there",
although not really...
-jack
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMA
and that's pretty cool ... do you also have a solution
to access the name of this "dynamic" variable if I'd
like to use it also (e.g. with WDDX functions)? That' would
be great!
TIA, Arne
> -Original Message-
> From: ..s.c.o.t.t.. [gts] [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 1
On Fri, May 11, 2001 at 06:51:35AM -0700, Robert Mena wrote:
> Hi, I have a development machine with 4.0.4pl1 which
> has been used for creating a set of scripts to access
> oracle (using stored procedures).
>
> It seems to be working fine (the problems that I've
> encountered seems to be related
Hi,
> update $T1 set caption = $caption where name = $name
put single quotes aroud the variables: caption='$caption'.
You can do this aswell:
$result = mysql_query("UPDATE $T1 SET caption='$caption WHERE name='$name'",
$DB)
or die(mysql_error());
if (! $result) {
send the haeder...
}
hope it
Hello,
Does anyone know the proper way to setup the extension_dir when i try to
set it up it says it can't find the extensions in that dir even though when
i go to that dir it is right there. Can someone let give me an example of
what they have for extension_dir and then give me the path to whe
Thanks! This works. And this give me a clue how to work on it.
Grishick.
- Original Message -
From: "Thies C. Arntzen" <[EMAIL PROTECTED]>
To: "Grishick" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, May 11, 2001 1:39 AM
Subject: Re: [PHP] Has anyone tried to make telnet client
I hate the fact that php.net, phpbuilder.com are down very frequently and
mysql.com is slow usually..
It's too bad for our image.
Oktay Altunergil
-Original Message-
From: Philip Olson [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 11, 2001 1:26 PM
To: Don Pro
Cc: php list
Subject: Re: [
Can do what i want. I need gif and jpeg
habe installed jpeg-6b , gd-1.8.4gif.tar.gz
checking for libjpeg (needed by gd-1.8+)... yes
checking for jpeg_read_header in -ljpeg... yes
checking for libXpm (needed by gd-1.8+)... no
configure: warning: If configure fails try --with-xpm-dir=
checking whe
http://uk.php.net/mirrors.php
regards,
philip
On Fri, 11 May 2001, Don Pro wrote:
> Does anyone know alternative sites for PHP documentation?
>
> www.php.net seems to be down.
>
> Thankls,
> Don
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL
I remember there was somebody who had a mail class and when I asked him to
he had added a similar functionality to his class that made it possible to
use another smtp domain to send email.
I'm very sorry that the above is the only info I have now. It was months
ago. Just wanted to let you know th
Hi there,
I am trying to update a row in my MySQL database (I am an newbie)
It does not work, but the DB does not return an error.
Is there an error in the syntax??
// Create the user record
//--
-
Does anyone know alternative sites for PHP documentation?
www.php.net seems to be down.
Thankls,
Don
--
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: [EMAI
Hi,
Before I try it, can anyone tell if the execution-time of the script start
when upload finish or when it starts? (I referring to the script that
receives the uploaded file and handles it). It its the later one, what can I
do when I want to upload files that take longer time to upload (but wit
Hello,
I recently installed ISS with SQL server because of a database our company
had installed. I installed PHP 4.0.5 to IIS and now get soem weird errors
when i run these script I made that worked perfectly before.
Error1: Undefined variable
Error2: Undefined offset
Has anyone else had the
Hi there,
I bought this book tryed it for 2 days now to bring the Mail over SMTP
example to work.
It doesn' t work at all.
Does anybody have a class for sending E-Mails over SMTP? This really drives
me mad. It should not
be so complicated to send E-Mails over the net.
Can anybody please help m
As I said before, it is most likely due to the newlines that PHP can not
recognize. You do not see the newlines, so as far as you are concerned,
the code is totally valid. But this is not what PHP sees - PHP sees a
long string rather than multiple lines in your code because it treats a
single
You may need to set your include_path to "." in php.ini. Than again maybe
not. Try it. Then include "../file.inc" should work (on Unix or Linux, use
"\" on Windows).
Regards,
Jakob Kruse
""Matthew Ralston"" <[EMAIL PROTECTED]> wrote in message
9dgfbo$kom$[EMAIL PROTECTED]">news:9dgfbo$kom$[EMAIL
Yup. I disagree totally. In the old style the file was totally unreadable
unless you happened to have an editor with the same concept of tab-width as
the editor of the person who wrote the file, plus the file was too wide to
read it all. Much easier this way.
And quite frankly, my eyes have no pr
Following the links you provided I came accross this.
(Installing, Configuring and Using Apache, PHP3 and Interbase on Linux.)
http://www.synectics.co.za/php3/tutorial/tutorial.html
oktay
-Original Message-
From: Geoff Caplan [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 11, 2001 11:4
Hi
I am hoping that someone can save me some testing time.
I am considering using Interbase/Firebird, but notice that there is no
facility to set the maximim number of connections in php.ini - the API
seems to be a bit basic.
Last time I tested an RDBMS without a maximum setting, I found that t
Hi
I am hoping that someone can save me some testing time.
I am considering using Interbase/Firebird, but notice that there is no
facility to set the maximim number of connections in php.ini - the API
seems to be a bit basic.
Last time I tested an RDBMS without a maximum setting, I found that t
Hi
I am hoping that someone can save me some testing time.
I am considering using Interbase/Firebird, but notice that there is no
facility to set the maximim number of connections in php.ini - the API
seems to be a bit basic.
Last time I tested an RDBMS without a maximum setting, I found that t
Hi
I am hoping that someone can save me some testing time.
I am considering using Interbase/Firebird, but notice that there is no
facility to set the maximim number of connections in php.ini - the API
seems to be a bit basic.
Last time I tested an RDBMS without a maximum setting, I found that t
Hi
> Please discuss as to your point of view the advantage of PostgreSQL over
> Interbase and/or vise versa. I'm considering three (3) important points
>
I'm just evaluating Interbase and there is an important point that did not
come out in the thread.
It seems that Borland went back on key com
if you have two frames, for example :
frame1 : the top frame
frame2 : the bottom frame.
in the bottom frame :
var ref=
in the top frame :
document.write("refferrer is"+parent.frame2.ref)
Well, something like that I guess...
Problem could be the top fr
Do you capture the actual Client side Machine path before they hit the
submit button or after?
If before, I'm guessing you use javascript.
If after, I have no guess. I didn't think that information was passed with
the POST.
kind regards,
bill hollett
Jason Lotito wrote:
> > -Original M
This is what it says on top of the page:
System: Windows NT 5.0 build 2195
Build Date: Apr 30 2001
Server API: CGI
Virtual Directory Support: enabled
Configuration File (php.ini) Path: C:\WINNT\php.ini
ZEND_DEBUG: disabled
Thread Safety: enabled
I've searched the rest of the page but all I saw w
> well, is your form enctype="multipart/mixed" and method="post" ?
>
> did you use open($file, "rb"); (b is important 4 binary)
>
> did you use addslashes when storing the file in mysql ?
>
> well, you ought to specify the problem more exactly...
>
Well,
it was that addslashes() stuff :)
Thank
Sorry about the post before (if there was one)... It was sent by accident.
Here is the complete question:
I would like to tweek the getenv("REMOTE_ADDRESS"); a little.
I want my top frame to print the referrer for the frame below.
I'm not sure if this should be done with PHP or javascript. Sound
Our personal experience is that the ISAPI version, running under IIS,
is not stable. Last version I tried was 4.0.4pl1. Perhaps 4.0.5 is
better now, but I don't think so.
I've read reports of people using PHP ISAPI under Apache on
Windows, but I've not tried that myself.
Richard McLean wrote
I would like to tweek the getenv("REMOTE_ADDRESS") a little.
--
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]
Hi All,
Apologies for the repost php-dev guys, I didn't think it had
gotten through.
cheers,
Richard
--
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: [EMA
I'm running a couple of web scripts in a Unix system with Apache. I need to
send an email message with some info but I have to do it using a SMTP
running in another server on my network. How can I do this?
I've tried setting the SMTP parameter in the php.ini file, but it'd only
work if I'm runnin
From the PHP FAQ ...
" The last method is to use PHP as a plug-in for a multithreaded web
server. Currently this is only theoretical -- PHP does not yet work
as a plug-in for any multithreaded web servers. Work is progressing
on support for ISAPI, WSAPI, and NSAPI (on Windows), which will all
Hi Mpeglitis,
>> I'm trying to implement a file upload on a website so people can send us
>> files of their work and I'm having a fantastic success with text files.
>> The problem comes when I try to upload binary files such as zip or mp3,
>> when I get the typical file attack error mesage from t
Hi, I have a development machine with 4.0.4pl1 which
has been used for creating a set of scripts to access
oracle (using stored procedures).
It seems to be working fine (the problems that I've
encountered seems to be related to the
oracle/procedure itself).
Last night I moved the scripts to the
> I'm trying to implement a file upload on a website so people can send us
> files of their work and I'm having a fantastic success with text files.
> The problem comes when I try to upload binary files such as zip or mp3,
> when I get the typical file attack error mesage from the script, in
> oth
I've also been interested in knowing how this is done. If
you are willing to share, please post the source to your
page.
Thanks,
joe
bill([EMAIL PROTECTED])@Fri, May 11, 2001 at 09:07:26AM -0400:
> Not sure what you're asking exactly, but I have a "Find a Dealer" page where
> a person puts in t
Not sure what you're asking exactly, but I have a "Find a Dealer" page where
a person puts in their zip code and selects how far they want to look.
http://earthcomfort.com/find_a_dealer.html
Is that what you're looking for?
Todd Pillars wrote:
> I found a site that had a commercial PHP versio
SELECT * FROM table1, table2 WHERE table1.user_id = table2.user_id
"John E. Haag" wrote:
> Hi,
>
> Can anyone tell me how to properly execute a JOIN from PHP to
> MySQL??
>
> I just want to JOIN two tables, both of which have 'user_id' in
> common, and then get all of the fields from the match
Hi,
It's probably a simple problem but never the less I spent the last 3 days
trying to figure it out.
Here it is, I hope you can help.
I configure apache with php and when I "make apache" I get the following
error:
"...
/usr/local/mysql/lib/libmysqlclient.a(my_compress.o): In function
'my_uncom
I found a site that had a commercial PHP version of a zip code mileage
calculator, but the site owners have not responded to my request.
Does anyone know of a calculator written in PHP that will allow users to
enter their zip code and select the amount of miles radius of their home?
Commercial v
is anyone using phplib with php4?
I seem to be unable to get it working on a win98 machine with php4.0.5
It seems unable to use phplib.
Error is:
Warning: Undefined variable: sid in
C:\Inetpub\scripts\lib\phplib\session.inc on line 393
Warning: Cannot add header information - headers already s
Hi,
Can anyone tell me how to properly execute a JOIN from PHP to
MySQL??
I just want to JOIN two tables, both of which have 'user_id' in
common, and then get all of the fields from the matching records.
Can anyone tell me where to find some info on this or cut-n'-paste
a little helpful code
Hi Grishick,
Grishick> Nothing is better then HomeSite
Agreed ;-)
---
EnjoY,
Adaran ([EMAIL PROTECTED])
check http://www.adaran.net
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PRO
Anyone have experience that deploy phorum with
IBM DB2 as backend database ?
Or, can this be done? The webserver is still apache.
Any hints on how to do this?
Thanks!
Yong
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-m
Authentication Question...
My company subscribes to several pay-to-view e-commerce sites that require
htaccess-type authentication. To keep things simple for our users and to
ensure that our users don't use these accounts w/out our permission, we would
like to keep the account IDs and pas
Authentication Question...
My company subscribes to several pay-to-view e-commerce sites that require
htaccess-type authentication. To keep things simple for our users and to
ensure that our users don't use these accounts w/out our permission, we would
like to keep the account IDs and pas
Check out http://www.dhtmlab.com for javascript code to create drop-down menus.
On Thu, 3 May 2001 10:05:48 -0700 Brandon Orther <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am making a suite of php tolls that I want to have all incorporated in one
> management website. What I would like
you can have access to everything, using the following construct:
window.document.forms[i].elements[j].name and
window.document.forms[i].elements[j].value
so, for example :
the first input text can be accessed as
window.document.forms[0].element[1] while the second can be accessed as
windo
Hi,
I need to find a solution to this. I am lost. To see what I talk about
check vvmm.net/search.php3. I am using php 4 offline. Based on whatever
the viewer select I get the below script to build the select statements
accordingly. Everything is working fine now. I want to add another
featu
1 - 100 of 133 matches
Mail list logo