Thanks Justin, actually I was also thinking of the same, but just wanted to
confirm that it is really not a good idea.
Was also wondering if there is any third party solution ?.
Regards
Manisha
"Justin French" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> This first rule is neve
> -Original Message-
> From: Davy Campano [mailto:[EMAIL PROTECTED]
>
> I am making a webpage, and I want to be able to email certain
> people that are selected by a checkbox when I click the
> submit button. I am trying to figure out what the best way
> is to do this. There are fo
I forgot to mention that I want the email addresses to be appear on the webpage from a
mySQL database. I already have the emails entered into a database, and I have written
the page that grabs each email from the database and puts it into a form with the
Checkbox. My problem is figuring out ho
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says...
> Hi,
>
> I have been trying to understand how to write a simple code that will
> let me limit the number of files view to 10 records, but I need to
> under how php can look at a number of records and then caculates how
> many pages it
If you've been following a thread then you'll have read everything
anyways. If you bottom post I gotta scan through all the crap I've
already read, and that often involves employing the down arrow or mouse.
Top posting is more efficient for those who are following along.
Cheers,
Rob.
On Thu, 2003
>Thanks Justin, actually I was also thinking of the same, but just wanted
>to confirm that it is really not a good idea.
>
>Was also wondering if there is any third party solution ?.
A third-party solution to a bad idea?
-
michal
Thought y'all might get a kick out of this. I saw the job listing on
Zend's site, and noticed that the hourly salary was funny, and thought
it HAS to be a typo, right? Wrong. The URL for the job is
http://www.zend.com/jobs/single_job.php?id=259
If anybody really, really wants it. *L*
D
On Friday, October 10, 2003, at 12:38 PM, Manisha Sathe wrote:
Thanks Justin, actually I was also thinking of the same, but just
wanted to
confirm that it is really not a good idea.
Was also wondering if there is any third party solution ?.
A third party solution to what??? I've described the
What?! Even sweatshop workers earn more than that!
-Original Message-
From: John Nichel [mailto:[EMAIL PROTECTED]
Sent: Friday, 10 October 2003 1:28 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Re: OFF-SHORE PHP &/or Perl Developer + MySQL &/or
PostgreSQL
Thought y'all might get a kick out of
=
This message is for the benefit of new subscribers and those new to PHP.
Those who do not want to be bothered just filter out the [Newbie Guide]
mails. Please feel free to add more points and send to the list.
===
Hi,
(Long time...)
On Sat, 04 Oct 2003 21:01:46 -0400
Gerard Samuel <[EMAIL PROTECTED]> wrote:
> - Edwin - wrote:
>
> > "Far east languages" are not necessarily in this form: "n;"
> > So,
> >
> >running htmlspecialchars() on, say, Japanese characters would do NO
> >harm since &, ", ', <,
Hi,
On Sun, 05 Oct 2003 20:36:51 -0500
John Nichel <[EMAIL PROTECTED]> wrote:
> Jason Wong wrote:
> > On Monday 06 October 2003 07:34, Roy W wrote:
> >
> >>Is there a way to attach a file with the mail() function?
> >
> >
> > Yes.
> >
>
> Is there a way to have PHP print out "Hello World"?
Hi,
On Mon, 6 Oct 2003 05:54:03 -0400
"Becoming Digital" <[EMAIL PROTECTED]> wrote:
> A friend asked me to recommend a good XML/XHTML reference or guide.
> I was able to point him to a number of websites, but he said that he
> would prefer a book. Sadly, I don't know of any, so I'm hoping some
On Thu, 9 Oct 2003 22:42:19 -0400
"Davy Campano" <[EMAIL PROTECTED]> wrote:
> I forgot to mention that I want the email addresses to be appear on
> the webpage from a mySQL database. I already have the emails
> entered into a database, and I have written the page that grabs each
> email from the
Hi,
On 09 Oct 2003 01:04:06 -0400
Robert Cummings <[EMAIL PROTECTED]> wrote:
> On Thu, 2003-10-09 at 01:12, Chris Shiflett wrote:
> > --- Evan Nemerson <[EMAIL PROTECTED]> wrote:
> > > Robert had the courtesy to put [ANNOUNCMENT] in the header.
> >
> > Yes, a courtesy which is appreciated by man
On Fri, 2003-10-10 at 00:12, - Edwin - wrote:
> Hi,
>
> On 09 Oct 2003 01:04:06 -0400
> Robert Cummings <[EMAIL PROTECTED]> wrote:
>
> > On Thu, 2003-10-09 at 01:12, Chris Shiflett wrote:
> > > --- Evan Nemerson <[EMAIL PROTECTED]> wrote:
> > > > Robert had the courtesy to put [ANNOUNCMENT] in th
$sql1 works, but $sql2 doesn't. Am I asking too much? :=)
$sql2 echoes ok. If I copy it and run it in phpmyadmin, it works, but this way as php
code, it flunks out when I add:
DELETE FROM '.$db.'.'.$table.' WHERE id='.$id.' LIMIT 1;
Ideas?
John
snip -
$sql1 = 'inser
John,
Oops, that's a little sarcastic :=)
Take it easy on the guy. We don't want them running screaming back to the Perl
newsgroups, do we?
John
> [EMAIL PROTECTED] wrote:
> > Hi, I'm searching for a free web space that supports php/mysql.
> > Someone knows something about?
> > Thanks too much
>
Don't forget the "in boolean mode" part. It will work a lot better:
SELECT * FROM $table WHERE MATCH (field1,field2,field3,field4) AGAINST ('red lion' IN
BOOLEAN MODE);
http://www.mysql.com/doc/en/Fulltext_Search.html
Need more code? let me know. I've fallen in love with what in boolean mode ha
I'm wondering if someone can explain something for me. I've never used
this before but have seen it used in numerous sets of coding.
What does the -> do? I see stuff like
$test=$test->test_url = "Something";
$test1=$test->test_this = "Something Else";
Is it some sort of array function? I'm just
It's used on objects.
In the examples below, $test_url and $test_this are both properties of an
object ($test)
have a bit of a read of this: http://php.net/manual/en/language.oop.php
HAND
Martin
-Original Message-
From: Tom Ray [Lists] [mailto:[EMAIL PROTECTED]
Sent: Friday, 10 October
It's commonly seen in OOP (Object Oriented Programming)
and allows you access to an objects data by name of the
entity within the structure.
I find it really useful for mysql/php work.
$result = mysql_query("SELECT * From Personal_Details WHERE
USER_ID='12345'") ;
$data = mysql_fetch_object($
For security reasons mysql_query does not support ; to separate queries.
phpmyadmin splits multiple query strings up (PMA_splitSqlFile())
John Taylor-Johnston wrote:
$sql1 works, but $sql2 doesn't. Am I asking too much? :=)
$sql2 echoes ok. If I copy it and run it in phpmyadmin, it works, but thi
PHP wrote:
[ snip ]
I think I need some kind of HTML parser that will break up the supervisors
form, then insert any values need for the form values and then re-display
the form data.
Well, if you insert the XML declaration at the top, and make sure your
page validates as XHTML, I believe you ca
You mean I'd have to google for free web hosts which allow Perl then?
Damn, when will my work ever be done? hehe
John Taylor-Johnston wrote:
John,
Oops, that's a little sarcastic :=)
Take it easy on the guy. We don't want them running screaming back to the Perl
newsgroups, do we?
John
[EMAIL
101 - 125 of 125 matches
Mail list logo