skyward quash obsolescent menopause capacious bum ringside stripy ministry deleterious
prepare chou buttress truism coronate summate dominion absorptive bookshelves
humidify spew dogma bob cufflink cosmology guthrie sainthood emily dynamism heat levin
sleepy yon addison bijection cognizant re
Yeah those damn email always come at same time.
Well on my blocked list now.
"Jordi Canals" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Sherri wrote:
> > Woah!
> >
> > Signed up litterally 1 minute ago and I'm already getting spam. From
> > "Advance Credit Suisse Bank"
> >
> Jus
Craig wrote:
Yeah those damn email always come at same time.
Well on my blocked list now.
This is only helping the Symptom. Why not solve the Problem?
The mails you got are auto-replies. Unfortunatley I didn't find a person
responsible for this [EMAIL PROTECTED] but perhaps such a person
is readin
Hello, I've bumped upon a problem. I would like to send an URL as variable
in the URL to a php file. But what if the URL in the variable is itself a
PHP file with variables?
It does work when I post them from a form. This form has only hidden fields,
and looks a bit akward. Is there a way to direc
Hi
I'm afraid I don't know anything about the xml/xsl:fo part of the
process but once you have the data in a usable form in your
program you can use PDFLIB functions to create a pdf from it. I
have used it very successfully. It does involve compiling libraries
and you may well have to pay a
On Wed, 26 May 2004, Marco Bleeker wrote:
>
>
>
>
>
>
> Please note the double definition of the ln variable (language, it sends
> "NL" for Dutch language; the first one to mview.php and the second one to
> mail1.php). How to put this directly in parameters to mail1.php?
>
> Thanks, Marco (pl
Hi,
I know this is a perennial problem but believe me i have googled and
tried various solutions
I've encounter many bb isps doing proxy caching that i cant get around.
That is i want to completely avoid caching.
I have tried all the header stuff ,both php headers and html headers.
Nothing works.
T
Erik Meyer wrote:
Greetings,
I am fairly new at this and I am going to create my first web server. I
have installed PHP as the documentation says and the only question that I
have is whether or not PHP can be configured on a single directory only,
(example mydomain.com/php/). The server that I am
Thanks a lot for your help.
I don't think I will buy any licenses (it is for private use); but I have foun a
workaround; I can convert txt to pdf by using FPDF ( http://www.fpdf.org/ )not a 100%
XML based solution but it will work. I will wait until xsl:fo conversion to PDF
possible is by using
Hi,
Wednesday, May 26, 2004, 2:28:58 AM, you wrote:
MRW> On Tue, May 25, 2004 at 07:37:47AM +0100, Peter Risdon wrote:
>> Michael R. Wayne wrote:
>>
>> >In my continuing efforts to actually get sessions to work, I upgraded
>> >to PHP 4.3.6 and apache 1.3.31. This did not make the slighest
>> >di
Hello!
I have a problem that I hope someone can solve for me ;-)
I have two classes:
Class Test
{
Function Test()
{
print(Hello Test);
}
}
Class MyClass extends Test
{
Function Debug()
{
print(Hello
Hiya,
How can i draw a new AFTER FIVE in the following loop
(i want to echo the records in 5 columns width tables whatever the number of
records will be fetched)
..
echo '';
while ($myrow = mysql_fetch_array($sql))
{
echo $myrow[0];
}
echo '';
regards
--
PHP General Mailing List (http://
Hi,
Wednesday, May 26, 2004, 10:21:57 PM, you wrote:
TR> if your not using cookies you have to pass the sessionid in your form
TR> as a hidden variable somewhere. Or maybe I missed it :)
TR> --
TR> regards,
TR> Tom
ok ignore me I found it
btw you can drop the ; it is not needed
--
regards,
* Thus wrote strategies ([EMAIL PROTECTED]):
> Hi,
> I know this is a perennial problem but believe me i have googled and
> tried various solutions
> I've encounter many bb isps doing proxy caching that i cant get around.
> That is i want to completely avoid caching.
> I have tried all the header s
echo '';
echo '';
while ($myrow = mysql_fetch_array($sql))
{
echo '';
echo $myrow[0];
echo '';
}
echo '';
echo '';
You did say you wanted 5 COLUMNS, not rows, in your table... right?
"nabil" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hiya,
>
> How can i draw a new AFTER F
> * Thus wrote strategies ([EMAIL PROTECTED]):
> > Hi,
> > I know this is a perennial problem but believe me i have googled and
> > tried various solutions
> > I've encounter many bb isps doing proxy caching that i cant get around.
> > That is i want to completely avoid caching.
> > I have tried al
$i = 0;
while ($myrow = mysql_fetch_array($sql)) {
if (++$i % 5 == 0) echo '';
...
Note: if used repeatedly do not increment the $i again in the loop.
HTH
Richard
-Original Message-
From: nabil
Sent: Wednesday, May 26, 2004, 2:28:28 PM
> Hiya,
> How can i draw a new
Hi group,
I have discovered a strange behaviour while using
session. I have a page from which i am opening other
pages using target = "_blank" element. Now when i open
the child page, it doesn't get $_SESSION values. I
have tried to dump variable from $_SESSION and it
shows me the blank array. Doe
* Thus wrote nabil ([EMAIL PROTECTED]):
> Hiya,
>
> How can i draw a new AFTER FIVE in the following loop
>
> (i want to echo the records in 5 columns width tables whatever the number of
> records will be fetched)
>
> ..
> echo '';
>
> while ($myrow = mysql_fetch_array($sql))
> {
> echo $myr
Hello!
I need to print an image file, but I'm having some problems.
I have a handler to a printer witch I can print text correctly with the
printer_write function.
I can also print an image if it is in bmp format (printer_draw_bmp),
however, I want to print png files.
$im = imagecreatefrompng
>Hiya,
>
>How can i draw a new AFTER FIVE in the following loop
>
>(i want to echo the records in 5 columns width tables whatever the number
of
>records will be fetched)
>
>..
>echo '';
>
>while ($myrow = mysql_fetch_array($sql))
>{
>echo $myrow[0];
>}
>echo '';
>
>
>regards
$i = 1;
echo '' .
How do I check for the presence of an optional $_GET param without
throwing a "Notice: Undefined index" when the param is not present?
Tried all three of these, they all produce the Notice when the param is
not passed:
if ($_GET['id'])
if ($_GET['id'] != "")
if (isset $_GET['id'])
--
PHP Genera
Hello Brian,
Wednesday, May 26, 2004, 4:01:30 PM, you wrote:
BD> How do I check for the presence of an optional $_GET param without
BD> throwing a "Notice: Undefined index" when the param is not present?
BD> Tried all three of these, they all produce the Notice when the param is
BD> not passed:
>
> >Hiya,
> >
> >How can i draw a new AFTER FIVE in the following loop
> >
> >(i want to echo the records in 5 columns width tables whatever the number
> of
> >records will be fetched)
> >
> >..
> >echo '';
> >
> >while ($myrow = mysql_fetch_array($sql))
> >{
> >echo $myrow[0];
> >}
> >echo '
From: "Brian Dunning" <[EMAIL PROTECTED]>
> How do I check for the presence of an optional $_GET param without
> throwing a "Notice: Undefined index" when the param is not present?
>
> Tried all three of these, they all produce the Notice when the param is
> not passed:
>
> if ($_GET['id'])
>
Hi,
a file called a.php prints "hello" to the browser then calls b.php
which prints "goodbye" to the browser.
the output looks like this:
hello
goodbye
how do I clear the screen so the end results looks like this:
goodbye
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit
Hello,
I am trying to use the RewriteEngine for the following two lines. One has one
parameter and the other has two?
http://www.plutoid.com/index.php?show=semi
http://www.plutoid.com/index.php?prd_id=5248&show=semi
Thanks in advance!
--
Jake Johnson
http://www.plutoid.com
--
PHP General Mai
On Wed, May 26, 2004 at 11:20:33AM -0400, michael young wrote:
> Hi,
> a file called a.php prints "hello" to the browser then calls b.php
> which prints "goodbye" to the browser.
> the output looks like this:
>
> hello
> goodbye
>
> how do I clear the screen so the end results looks like thi
hi
I have a problem, I'm trying to combine the value of two strings
together into a final string. For example
$path = '/tmp/photos/';
$filename = 'pic1.jpg';
$finalvalue = $path + $filename; (I know that the + is not used its
there for explanation only)
The value for path will remain consta
Jake Johnson wrote:
Hello,
I am trying to use the RewriteEngine for the following two lines. One has one parameter and the other has two?
You might want to try an apache group. And you might want to read the
manual, particularly the examples before you post in an apache group.
http://www.plu
$finalvalue = $path.$filename;
Tommy Atherton wrote:
hi
I have a problem, I'm trying to combine the value of two strings
together into a final string. For example
$path = '/tmp/photos/';
$filename = 'pic1.jpg';
$finalvalue = $path + $filename; (I know that the + is not used its
there for explanatio
[snip]
I am trying to use the RewriteEngine for the following two lines. One
has one parameter and the other has two?
[/snip]
this is more of an apache question you could get better answers on an
apache list
http://httpd.apache.org/docs/misc/rewriteguide.html
just check the first for prd_id fir
Does anybody knows how can i compile (or get a
compiled binary) for php that works on a Itanium runing on a Windows Server @ 64
bits?
I try searching for a gcc version for the Itanium
processor but i couln't found any avaliable, does anybody know were i can find
any compiler that works?
Very slick Richard.
>>$i = 0;
>>while ($myrow = mysql_fetch_array($sql)) {
>> if (++$i % 5 == 0) echo '';
>> ...
>>
>>
>>Note: if used repeatedly do not increment the $i again in the loop.
>>
>>HTH
>>Richard
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit:
if (isset( $_GET['id']))
>>How do I check for the presence of an optional $_GET param without
>>throwing a "Notice: Undefined index" when the param is not present?
>>
>>Tried all three of these, they all produce the Notice when the param is
>>not passed:
>>
>>if ($_GET['id'])
>>if ($_GET['id'] !
I am trying to design a custom form script and I've stumbled across a small
problem.
I want to implement a file upload into the form, but rather than posting to
another file I want to refresh the form and then show that there has been a
file uploaded.
I know about changing the form action to:
Bu
"Hardik Doshi" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi group,
>
> I have discovered a strange behaviour while using
> session. I have a page from which i am opening other
> pages using target = "_blank" element. Now when i open
> the child page, it doesn't get $_SESSION val
I was wondering, are any of you working on a Portlet development with PHP?
Or, are you aware of any projects projects using Portlets? Any online
references? Any plans for Portlet support in PHP?
Please let me know.
Any references would be greatly appreciated.
_john
=P e p i e D e s i g n s
ww
"Tom Chubb" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am trying to design a custom form script and I've stumbled across a
small
> problem.
> I want to implement a file upload into the form, but rather than posting
to
> another file I want to refresh the form and then show that
> >>How do I check for the presence of an optional $_GET param without
> >>throwing a "Notice: Undefined index" when the param is not present?
> >>
> >>Tried all three of these, they all produce the Notice when
> the param
> >>is not passed:
> >>
> >>if ($_GET['id'])
> >>if ($_GET['id'] != "")
>
"Michael Young" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
> a file called a.php prints "hello" to the browser then calls b.php
> which prints "goodbye" to the browser.
> the output looks like this:
>
> hello
> goodbye
>
> how do I clear the screen so the end results loo
hi:
i wonder why...
if(!is_object($_SESSION['xmlModel']))
echo "there is no obj present, juppa**";
at my place always results in TRUE or
echoing the "there is no.. ", even if var_dump
reports that $_SESSION['xmlModel'] is an
object.
did i screw something up or are there
special policies wit
Hello,
I hope it's OK that I put this email on this list I have some possible
Web design work in the Los Angeles Area... regarding PHP&MySQL.
If anyone wants to:
Can you call me ASAP to discuss the particulars?
Thanks,
Dave B.
Ph. 818 763-9988 - Cel: 818 314-8900
--
Thanks - RevDave
[EMA
Hi,
Make sure you include the Class file in every consecutive page that you
would like to use the object in.
Regards,
Justin Palmer
-Original Message-
From: Matthias H. Risse [mailto:[EMAIL PROTECTED]
Sent: Wednesday, May 26, 2004 12:04 PM
To: [EMAIL PROTECTED]
Subject: [PHP] is_objec
From: "Justin Palmer" <[EMAIL PROTECTED]>
> Make sure you include the Class file in every consecutive page that you
> would like to use the object in.
and include it before session_start(). Although if var_dump() is showing
it's an object, you're question of why is_object() fails is still valid.
> > Hi,
> > a file called a.php prints "hello" to the browser then calls
> > b.php which prints "goodbye" to the browser.
> > the output looks like this:
> >
> > hello
> > goodbye
> >
> > how do I clear the screen so the end results looks like this:
>
> a.php:
>
> echo 'hello';
> header('lo
aslo you could change it to something else like this
$_GET['id'] = $id;
if (!$id) {
// whatever you want to happen put here
}
From: "Daniel Clark" <[EMAIL PROTECTED]>
Reply-To: "Daniel Clark" <[EMAIL PROTECTED]>
To: "Brian Dunning" <[EMAIL PROTECTED]>,"[EMAIL PROTECTED]"
<[EMAIL PROTECTED]>
Subjec
hey,
I'm not going to call you, but we can talk over the net with email. I also
have msn ([EMAIL PROTECTED]) and aim (catim2005). That goes for anyone that
want to talk. O and if see my buddy icon on aim don't be scared.
From: Domains4Days <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: [PH
I put this at the top of long pages,
$processing = "
processing, please wait ...
";
echo $processing;
flush();
Then put this at the bottom,
$hide = "
if (document.layers) {
processing.visibility='hide'
} else if (document.all) {
document.all('processing').
hey, you could use some jave script there
a.php:
echo 'hello';
echo"
Hi -
I'm having some PHP segfault issues, and I can't seem to figure out what's
wrong. Kinda frustrating :) The script i'm using to test is really simple,
and as I tweak it to figure out the failure point, I'm finding that it
/seems/ to break more reliably based on the presence of code **after** a
I've checked the archives and several other sources, but still can't
seem to make this work.
I have a form with checkboxes to designate records to be deleted from
the mysql database. The pertinent form code is:
The processing code is:
if (count($del) > 0){
for ($i=0;$i
Echoing the quer
Hi,
Thursday, May 27, 2004, 11:34:03 AM, you wrote:
AP> I've checked the archives and several other sources, but still can't
AP> seem to make this work.
AP> I have a form with checkboxes to designate records to be deleted from
AP> the mysql database. The pertinent form code is:
AP>
AP> The pro
Albert Padley wrote:
I've checked the archives and several other sources, but still can't
seem to make this work.
I have a form with checkboxes to designate records to be deleted from
the mysql database. The pertinent form code is:
The processing code is:
if (count($del) > 0){
for ($i=0;$i
<< THIS ASSUMES THAT THE IMAGE WAS UPLOADED OK >>
// ADD A FILE NAME TO THE UPLOADED FILE.
$pageDestinationFile="$pageGalleryPath/image_".$pagePicNum."_temp.jpg";
// LETS MOVE THE IMAGE OUT OF THE TEMP DIR.
move_uploaded_file ($up
On May 26, 2004, at 8:01 PM, John W. Holmes wrote:
Albert Padley wrote:
I've checked the archives and several other sources, but still can't
seem to make this work.
I have a form with checkboxes to designate records to be deleted from
the mysql database. The pertinent form code is:
The processin
I have seen similar sites that runs php. but without the extension.
like: example.com/hello/great?ID=19
How can i do this? Run the php even without the .php extension
-- -
Louie Miranda
http://www.axishift.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.
On May 26, 2004, at 7:55 PM, Tom Rogers wrote:
Hi,
Thursday, May 27, 2004, 11:34:03 AM, you wrote:
AP> I've checked the archives and several other sources, but still
can't
AP> seem to make this work.
AP> I have a form with checkboxes to designate records to be deleted
from
AP> the mysql database
* Thus wrote Philip ([EMAIL PROTECTED]):
>
>
> Any Ideas?
Well, I'd have to say that dogs make better pets than cats do,
mainly because they provide much more companionship than cats...
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--
PHP General Mailing List (http://
* Thus wrote Albert Padley ([EMAIL PROTECTED]):
>
>
>
> The processing code is:
>
> if (count($del) > 0){
> for ($i=0;$i
> $query = "DELETE FROM ref_events_reg WHERE id = '$del[$i]'";
> }
> }
I think you need to take a step back and figure out where the $del
variable
On May 26, 2004, at 11:16 PM, Curt Zirzow wrote:
* Thus wrote Albert Padley ([EMAIL PROTECTED]):
The processing code is:
if (count($del) > 0){
for ($i=0;$iI think you need to take a step back and figure out where the $del
variable is comming from.
Both solutions that have been provided sho
* Thus wrote Louie Miranda ([EMAIL PROTECTED]):
> I have seen similar sites that runs php. but without the extension.
>
> like: example.com/hello/great?ID=19
>
> How can i do this? Run the php even without the .php extension
if you add a .htaccess file in the /hello/ directory with something
lik
On May 26, 2004, at 11:17 PM, Albert Padley wrote:
On May 26, 2004, at 11:16 PM, Curt Zirzow wrote:
* Thus wrote Albert Padley ([EMAIL PROTECTED]):
The processing code is:
if (count($del) > 0){
for ($i=0;$iI think you need to take a step back and figure out where the $del
variable is commi
I got what you mean, but can we do this on the whole directory instead by
files?
Like for example the whole / directory and /subdirectory/ so i wont be doing
that editing every files?
The example you gave is working, btw.
-- -
Louie Miranda
http://www.axishift.com
- Original Message -
Hi,
Thursday, May 27, 2004, 3:07:28 PM, you wrote:
AP> On May 26, 2004, at 7:55 PM, Tom Rogers wrote:
>> Hi,
>>
>> Thursday, May 27, 2004, 11:34:03 AM, you wrote:
>> AP> I've checked the archives and several other sources, but still
>> can't
>> AP> seem to make this work.
>>
>> AP> I have a for
* Thus wrote Louie Miranda ([EMAIL PROTECTED]):
> I got what you mean, but can we do this on the whole directory instead by
> files?
> Like for example the whole / directory and /subdirectory/ so i wont be doing
> that editing every files?
If you want a specific directory to be executed you're loo
Brian Dunning wrote:
How do I check for the presence of an optional $_GET param without
throwing a "Notice: Undefined index" when the param is not present?
Tried all three of these, they all produce the Notice when the param is
not passed:
if ($_GET['id'])
if ($_GET['id'] != "")
if (isset $_GET
67 matches
Mail list logo