h), I think I can pull this off.
Please help me.
Happy ThanksGiving,
Richard
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Get rid of the double quotes around your variables so:
$sql = "UPDATE $table_name SET name='$name', lname='$lname', mobil='$mobil'
etc etc etc
Cheers!
Rick
"Sir my concern is not whether God is on our side. My great concern is to be
on God's side." - Abraham Lincoln
> On Thursday 05 December 2
If it is a function that you are getting an error on, just go ahead and put
a '@' sign before the function so for example @fopen(); or you can change
the error reporting in the php.ini file. I do believe there is an error
reporting function also, but off the top of my head I cant remember what it
Is there a way of flushing output to the browser. So for example, I have a
script that checks things in a database, every check, or every hundred
checks it would be nice to output something to the browser.. currently it
finishes what it does, or after a minute or so it then shows the final page
wi
I am parsing a csv file with fgetcsv and the fields are surrounding by
double quotes, now I am running into a problem periodically that when there
are quotes within the value it is treating it like another value instead of
the same value.
Any ideas on how to get around that?
I am thinking I might
I did email the company that the csv feed is coming from so we'll see what
comes of that. I really hope they fix it.
Well here is what I did to solve the problem:
I pulled the csv file in using file(), then found the string length, used
substr() to get rid of the first double quote in the line a
Why don't you just try:
$cust2 = str_replace('#','#',$cust);
That should replace all instances of # with it's html entity equivalent. If
that doesn¹t work then there is something else wrong with your script and
we'll need to see it all! :)
Rick
"People who drink to drown their sorrow should be
http://www.php.net/manual/en/function.include.php
"Warning
Windows versions of PHP prior to PHP 4.3 do not support accessing remote files via
this function, even if allow_url_fopen is enabled."
The mail archives didn't shed any light on this question.
What alternatives might
How can I delete a key and it's value from an array?
for example:
$test = array(0=>'yes', 2=>'no', 5=>'maybe', 7=>'so');
And I wanted to delete the second key "2" so I could end up with an array
like so:
$test = array(0=>'yes', 5=>'maybe', 7=>'so');
How would I go about doing that?
Thanks!
R
; Date: Wed, 11 Dec 2002 21:37:18 -0500
> To: "'Richard Baskett'" <[EMAIL PROTECTED]>, "'PHP General'"
> <[EMAIL PROTECTED]>
> Subject: RE: [PHP] Delete array element
>
>> How can I delete a key and it's value from an array?
>>
*sigh* n/m I just got rid of the curly braces and that did the trick.
Thanks!
Rick
"Science without religion is lame, religion without science is blind." -
Albert Einstein
> From: Richard Baskett <[EMAIL PROTECTED]>
> Date: Wed, 11 Dec 2002 18:50:20 -0800
> To: <[EM
$song = "They Might Be Giants - No!.mp3"
$arr = explode(' - ', $song);
$length = strlen($arr[1]); // gets char length of song
$artist = $arr[0];
$song = substr($arr[1], 0, ($length-4); // deletes the .mp3 off of song name
Cheers!
Rick
He who is devoid of the power to forgive is devoid of the p
Sure is:
header("Location: somepage.ext");
exit;
Cheers!
Rick
"If you think you're too small to have an impact, try going to bed with a
mosquito in the room." - Anita Koddick
> From: "James Johnson" <[EMAIL PROTECTED]>
> Date: Thu, 12 Dec 2002 12:30:19 -0800
> To: <[EMAIL PROTECTED]>
> Subject
You could put it in yourself
action="somepage.php"
or my preference is stick the session as a hidden field
/>
Cheers!
Rick
"Finish each day and be done with it. You have done what you could; some
blunders and absurdities have crept in; forget them as soon as you can.
Tomorrow is a new day; y
(ifield)
should return id=2, ifield=200
(but this doesn't work, of course)
Many thanks,
Richard
new year
Richard Pijnenburg
uot; I have only taken a brief preliminary look at it, but it
seems to include mainstream gd fixes up through version 2.0.2.
but sins 2.0.9 is out, witch version should I use ?
thanks.
Richard Pijnenburg
Klik-on Internet Solutions
> -Original Message-
> From: Rick Widmer [mailto:[EMAIL
You could export, or save as a tab delimited text file, then go ahead and
use phpMyAdmin or a custom script to pull all that data into the database.
It really shouldn¹t be much of a problem coming from Excel.
Cheers!
Rick
"Finish each day and be done with it. You have done what you could; some
b
Use this instead:
\n");
print ("\n");
print ("\n");
print ("Calender
\n");
print ("\n");
print("{$result['meeting_name']}\n") or die ("you suck");
mysql_close ($Link);
?>
So basically make sure you escape your double quotes within your print
statements, plus yo
When using the system() function, let's say starting up a program, can that
program start in the background while the rest of the page is parsed or does
it have to wait until the system command has finished whatever it is doing?
Rick
"Dost thou love life? Then do not squander time; for that's the
When using the system() function, let's say starting up a program, can that
program start in the background while the rest of the page is parsed or does
it have to wait until the system command has finished whatever it is doing?
Rick
"Dost thou love life? Then do not squander time; for that's the
Any idea why Im getting these empty messages?
Rick
"Freedom and immorality can not co-exist because freedom requires personal
responsibility." - Unknown
-- Forwarded Message
From: [EMAIL PROTECTED]
Date: Mon, 6 Jan 2003 17:41:19 -0500 (EST)
-- End of Forwarded Message
--
PHP Genera
Ok I know it's off topic, but I've been working on this for over 5 hours now
and I almost have it configured, but something is definitely wrong!
Basically I can send email using sendmail by this command:
echo "Just a test" | mail -s "test" [EMAIL PROTECTED]
Now [EMAIL PROTECTED] receives the emai
For some reason the php.ini file is not being compiled into php on runtime
with Apache 2.. I tried to make a change within the php.ini
mysql.default_socket or something similar to change where php looked for the
mysql socket and it wouldn¹t show up on phpinfo.. so I changed it within the
httpd.con
Hi guys,
Is there a way for PHP to invoke the Save Dialog on the client's PC?
And after choosing a filename, save the contents of a TextArea into their
hard drives?
--- Richard ---
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Ok I am hearing a bad rumor that Red Hat 8.0 and the Mac xserve both come
with Apache 2.. now is this a rumor or is this true?
If it's true.. why? And does anybody have any experience in uninstalling
Apache 2 on the xserve and does it break anything?
Cheers!
Rick
Don't walk in front of me, I m
On Thu, 23 Jan 2003 12:28:21 -0800, Richard Baskett wrote:
> Ok I am hearing a bad rumor that Red Hat 8.0 and the Mac xserve both come
> with Apache 2.. now is this a rumor or is this true?
>
> If it's true.. why? And does anybody have any experience in uninstalling
> Apache
## the following checkboxes are checked?
###
###
###
###
###
###
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney
Transcend Development
Producing the next phase of your internet presence.
[EMAIL
oxes are checked?
###
###
###
###
###
###
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED]
htt
tp://www.php.net/unsub.php
### >
### >
###
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED]
http://xend.net
602-971-2791
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
be, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED]
http://xend.net
602-971-2791
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ozillo and had no problems.
###
### -mm
###
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED]
http://xend
ibe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED]
http://xend.net
602-971-2791
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
dd slashes to prevent certain errors
### $picture_name = strip_tags($_FILES['picture']['name']);
### $picture_name = addslashes($picture_name);
### $picture_name = str_replace("\r\n", "", $picture_name);
### $picture_n
pointers or example code
### >
### >
### > Steve Jackson
### > Web Developer
### > Viola Systems Ltd.
### > <http://www.violasystems.com/> http://www.violasystems.com
### > [EMAIL PROTECTED]
### > Mobile +358 50 343 5159
### >
### >
### >
### >
### >
#
Doesn't iCal use the vCalendar vCal format? Kind of like vCards, but to
deal with Calendar information.. it should be easy to write something that
will parse that..
Cheers!
Rick
"The greatest trick the devil ever played was convincing the world he didn't
exist." - Unknown
> From: "Reuben D. Bu
t an extra query?
###
### thx,
###
### Hans
###
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PRO
p://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next phase of your internet presence.
[EMAIL
p://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next phase of your internet presence.
[EMAIL
List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PR
d
### dbg-client for this OS.
### Which php-debugger do you use under Linux?
###
### Thank you.
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next p
#
###
### Thank you.
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED] *
http://xend.
t/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED] *
http://xend.net*
6
I need to add the following to an array so that I can add,delete and
change the data to the right of the last : I am thinking I first have
to split this into an array and then split the part I what into
another array. Would this be called a associative array? How do I
create this type of array from
,tester7b
--
Best regards,
Richard mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Recycled Beowulf Project
### Looking for throw-away or obsolete computers and parts
###to recycle into a Linux super computer
###
###
### --
### PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transce
ls` , `location` , `img`, `tstamp`, `style`)
### VALUES ('', '$serial',
'$model', '$yr_blt', '$km', '$price',
### '$hours',
### '$d
Quoting Luis A <[EMAIL PROTECTED]>:
### hi pasl i got a troblem here
###
###
### if some one can help me ?
###
### take a look at this
###
###
###
###
### HE DOES NOT WORKING
###
### any subjest ?
###
###
###
###
--
Richard Whitney *
Transcend Development
Producing th
Warning: Unknown(path/index.php): failed to create stream: Permission denied
in Unknown on line 0
Warning: Unknown(): Failed opening '/path/index.php' for inclusion
(include_path='.:/path/phpinc/') in Unknown on line 0
What in the world is going on here? I've set all my files to 777 just to
test
is the group I what to be able to change but referenced by group[0]
I need to be able to add to and delete from this group and then save it to a file
}
--
Best regards,
Richard mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To u
Yeah I am having the same problem also.. it used to work and Im not sure
when it happened.. it just doesn¹t work anymore.. Someone enlighten us?
Rick
When one door closes, another opens; but we often look so long and so
regretfully upon the closed door that we do not see the one which has opened
5:tester3,tester3a,tester3b
site4:x:506:tester4
site5:x:507:tester5,tester5a,tester5b
site6:x:508:tester6
site7:x:509:tester7,tester7a,tester7b
--
Best regards,
Richard mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit:
b
--
Best regards,
Richard mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Ok I created an engine, an extremely simple engine that parses a template
file and then according to whatever page and language it is on it calls that
template.
Now the problem is that, well let me give you an example:
I have a page called index.php which only has an include_once function in
it
d here. I have read the manual for arrays
RK>> and still can't figure it out.
RK>> site1:x:503:tester1
RK>> site2:x:504:tester2,tester2a
RK>> site3:x:505:tester3,tester3a,tester3b
RK>> site4:x:506:tester4
RK>> site5:x:507:tester5,tester5a,tester5b
RK&g
PHP General Mailing List (http://www.php.net/)
### To unsubscribe, visit: http://www.php.net/unsub.php
###
###
--
Richard Whitney *
Transcend Development
Producing the next phase of your internet presence.
[EMAIL PROTECTED] *
http://xend.net*
6
se of php's VARIANT() type and now to
call functions that use it.
Thank you VERY much!!
Regards,
Richard.
-Original Message-
From: Harald Radi [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 26, 2003 10:41 AM
To: 'Richard Quadling'
Cc: [EMAIL PROTECTED]; [EMAIL PR
ly want to supply What and Name, Which and Count are not valid for
bookmarks. Is there a true NULL type I can send?
Richard.
P.S. Thanks for the OLEView pointer.
-Original Message-
From: Harald Radi [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 25, 2003 5:14 PM
To: 'Richard Qu
Ok most all programs I see they use within the html.
Now I have always used the shortened version Is there a reason
why I should not use this? I've never had any problems with this way of
doing things, but I just don't see anyone else using that format..
Cheers!
Rick
"As I grow to understand
for ($i = 1; $i < 6; $i++) {
echo "Destination\n";
}
You forgot the # sign.
Cheers!
Rick
Happiness is not a destination. It is a method of life. - Burton Hills
> From: "Beauford.2002" <[EMAIL PROTECTED]>
> Date: Tue, 4 Mar 2003 17:21:20 -0500
> To: "HWG Basics" <[EMAIL PROTECTED]>
> Cc: "PHP
03 20:21:05 -0500
> To: "Richard Baskett" <[EMAIL PROTECTED]>, "PHP General"
> <[EMAIL PROTECTED]>
> Subject: Re: [PHP]
> Thanks for the info, but the # is not used in this way from the information
> I have read.
>
> . . .
> Define a tar
ot;This email has already been
registered.";
exit;}
}
this is what is in the members.txt file
[EMAIL PROTECTED]|Mr.|Richard|Kurth|1046828998|03/04/2003
--
Best regards,
Richard mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net
This script will remove a line from a text list of email address and
then re-write the list. The only problem I am having is when it
re-writes the list it adds a extra line between each record. How can I
stop this from happening
$recordsarray = file($members);
$remove = "[EMAIL PROTECTED]";
$temp
Hello Jason,
Wednesday, March 5, 2003, 12:38:39 PM, you wrote:
JW> On Thursday 06 March 2003 04:18, Richard Kurth wrote:
>> This script will remove a line from a text list of email address and
>> then re-write the list. The only problem I am having is when it
>> re-writ
Take a look at: http://www.php.net/manual/en/reserved.variables.php and
scroll down to the HTTP_ACCEPT_LANGUAGE constant.
When you set your language variable within your browser, the
HTTP_ACCEPT_LANGUAGE constant can be accessed by
$_SERVER['HTTP_ACCEPT_LANGUAGE']. It results in a two letter code
Hello Chris,
Don't know how I did that but it worked strange. Maybe the reason I am
getting the extra line is because I am testing the script on Windows
200 and not on a good Linux box.
Wednesday, March 5, 2003, 1:37:43 PM, you wrote:
CW> On Wed, 5 Mar 2003, Richard Kurth wrote:
>&g
les .=substr($file,0,strpos($file,'.'));
}
}
closedir($handle);
--
Best regards,
Richard mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello Jonathan,
Thanks I know it was something simple like that.
Wednesday, March 5, 2003, 2:42:41 PM, you wrote:
JP> Richard,
JP> $handle = opendir($emaildir);
JP> $emailes = "";
JP> while (false !== ($file = readdir($handle))) {
JP> if ($file != &
; >To unsubscribe, visit: http://www.php.net/unsub.php
### >
### >
### > _
### > MSN 8 with e-mail virus protection service: 2 months FREE*
### > http://join.msn.com/?page=features/virus
### >
###
###
###
##
d_email();
}}}//end of all three if statements
}//end of $emails while loop
} //end $members while loop
--
Best regards,
Richard mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
mbers table sent field with the key #
RK>> $sql1="Update members set sent='$keys' where
email='$logged_email'";
RK>> $result=safe_query($sql1);
RK>> send_email();
RK>>
This function removes a line from a text file list. It has one problem if
it removes a line from the beginning or middle of the text file list
it leaves a blank line. How can I make it remove the blank line also?
function remove_email($email){
global $members,$datadir,$email;
$recordsarray = file
yet found a DBI equivalent for PHP.
Any comments or suggestions would be greatly appreciated.
Richard
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Richard Sumilang
IT Manager
ExexDirect, LLC
21650 Oxnard St., Suite 2350
Woodland Hills, CA 91367
(877) 591-3252
[EMAIL PROTECTED]
www.exexdirect.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Do you realize that link does not work with the Safari browser? it just
shows up blank :(
Rick
When one door closes, another opens; but we often look so long and so
regretfully upon the closed door that we do not see the one which has opened
for us. - Alexander Graham Bell
> From: "Robert Samue
Ill second that.. err third that.. I like to hear announcements also.. as
long as they are PHP based of course :)
+1 for me also.
Rick
You will never be happy if you continue to search for what happiness
consists of. You will never live if you are looking for the meaning of life.
- Albert Camus
Ok some of you might not like this, others of you will know exactly what I
mean, but it just reminded me so much of this forum that I am sure some of
you will catch the humor in it:
http://www.mac-forums.com/forums/showpost.php?postid=5736&postcount=85
Please keep your flames directed at me inste
I have a couple of problems with newish MySQL database.
I am running WinXP-Pro, MySQL V 4.0.12-nt, Apache etc. I previously got
this all working, but today (after a break of a couple of weeks) I can't get
"phpMyAdmin-2.5.0-rc1" to work.
I have configured {config.inc.php} exactly as per documenta
7;] = 'PMA_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'PMA_column_info';
$cfg['Servers'][$i]['history'] = 'PMA_history';
http://127.0.0.1/ is configured in Apache to be development directory on C:
(ie. C:\...\...\development)
The {phpmyadmin} directory is thus
C:\...\...\development\phpmyadmin
Apache is working, PHP is working and MySQL is working. phpMyAdmin is
working too, with the exception of this feature.
On phpMyAdmin screens, I see:-
"Error
The additional Features for working with linked Tables have been
deactivated. To find out why click here."
Any ideas on the cause of the problem?
PS: I get the same results running phpMyAdmin in Netscape.
Thanks in advance,
Richard
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
reate the
symbolic link and there you have it.
Now if you want to get rid of that error just set this variable:
$cfg['PmaNoRelation_DisableWarning'] = TRUE;
And that should take care of it!
Cheers!
Rick
"The only way to have a friend is to be one." - Ralph Waldo Emerso
You might want to look at eShox, it's based on osCommerce, but in my opinion
it's quite a lot better.
Cheers!
Rick
"The intuitive mind is a sacred gift and the rational mind is a faithful
servant. We have created a society that honors the servant and has
forgotten the gift." - Albert Einstein
Mostly eShox you are paying for support. It's a great program and the
support is unmatchable.. whenever I had questions support would email me
back sometimes instantaneously, and other times.. within a couple of hours.
I can get you $50 off if you would like since I work with them quite a bit
for
mponents of an application connect to create a
comprehensive solution
Please send resumes to [EMAIL PROTECTED] Thanks!
Richard Gabriel
Director of Technology,
CoreSense Inc.
(518) 306-3043 x3951
cial chars,
Instead, with
php_value default_charset UTF-8 it displays correctly special chars but
not htmlentities
Any suggest?
RICHARD :-D
http://www.jia.it
http://programmazione.risorse.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
ICQ: 130902854
RICHARD :-D
http://programmazione.r
Or just go to http://www.birthdayalarm.com/ and have them do it for you :)
I regard as a mortal sin not only the lying of the senses in matters of
love, but also the illusion which the senses seek to create where love is
only partial. I say, I believe, that one must love with all of one's being,
o
This is how I do it:
if ($_SERVER['HTTPS']!='on') {
header("Location: https://mynet.com/pay.php";);
exit;
}
"It is my ambition to say in ten sentences; what others say in a whole
book." - Friedrich Nietzsche
> From: [EMAIL PROTECTED]
> Date: Fri, 1 Aug 2003 10:20:58 +0200
> To: [EMAIL PROTE
yeah you can set a variable this way:
http://www.example.com/test.php?var=something
This sets the variables $var equal to "something" and you can use them
accordingly within your script. If you have safe mode on then you'll need
to access the $var variable by using the $_GET array like so:
$_GE
Actually that does retrieve the number of rows..
// Query
$query = "SELECT COUNT(*) AS count FROM pet";
// Execute Query
$result = mysql_query($query);
// Get the result of query named count
$count = mysql_result($result,0);
echo $count." is the number of rows";
Cheers!
Rick
In order to seek
Please Cc: me directly, if possible. Thanks!
[This got long, but a search for "Synopsis:" (two of them) should give the
gist.]
Originally, the machine (Linux 2.4.19-16mdk) had Mandrake 8 RPM's of PHP
4.2.3 and Apache 1.2.26
I was able to install LIBFDFTK.SO 5.0 and the .h file, symlinked to
low
Ok I am having some serious problems with payflow pro.. Has anybody else
had the problem that when you execute the test.sh script it works fine, but
when you do the exact same thing in php it gives you a failed to connect
response message? If so what in the world did you do to get it to work?
Th
>Karsten Dambekalns wrote:
>> Hi!
>>
>> Sorry for the 'longish' post... I am working on a script that generates
>> FDF data and sends it to the browser for display in a PDF file.
> ...
>> But it works only in Mozilla, MSIE starts Acrobat Reader which then pops
>> up an alert window saying (transla
Oooh, and I forgot!
In addition to all the other Microsuck non-compliance...
IE just plain doesn't like the IDEA of a dynamic PDF file.
Thus, if you use the usual no-cache headers, it will puke on you.
So what you have to do is embed a random part in your URL.
Continuing with our example from
When I import a file using the file() function it is screwing up any spanish
accents and putting in some strange characters in their place. Is there
something that I can do to remedy this?
So for example something like 'é' is being turned into '-', or 'í' is being
turned into '£' etc etc.. exampl
never used c or the like and don't fully understand what it is
doing!
Can anyone help please?
Thank you
Richard
--
Richard Eyles
Principal Pharmacist Computer Services
Portsmouth Hospitals NHS Trust 023 9237 2923 / Ext 5283
: [PHP] Re: UPS Address Validation PHP Class
>
> Hello,
>
> On 08/13/2003 06:35 PM, Richard Baskett wrote:
>> Do any of you know of a PHP Class that will interact with the UPS address
>> validation routine? I am completely confused when it comes to UPS and how
>> the
Do any of you know of a PHP Class that will interact with the UPS address
validation routine? I am completely confused when it comes to UPS and how
they integrate things.. and have been saved by someone's UPS Rate Class, but
now I need an Address Validator.
Please please please help!
Thanks!
Ri
Wouldn¹t it just be easier to do a relationship table as in
Personnel
emp ID parent
'Albert' 1 0
'Bert'2 1
'Chuck' 3 1
'Donna' 4 0
'Eddie' 5 4
'Fred'6 0
'Joe' 7 6
This way you know the
Not specific to PHP really, but it all started with a simple PHP script I
was automating...
I've used cron/crontab on a zillion machines, and it always worked
flawlessly.
Well, once I'd get the actual shell commands and permissions right anyway.
But this time...
The cron jobs just aren't having
I think you guys are bragging :) I have had over 100 easily.. about 3 or 4
every 5 minutes.. it's pretty bad. I work with a bunch of colleges and I
think they are the ones getting hit the worse :(
Rick
I look forward to the invention of faster-than-light travel. What I'm not
looking forward to
> I am getting these majordomo mails as well, thought it was a problem at
> my end. grrr, people who use the redmond operating system deserve to be
> plagued by viruses.
Here here! Ill second that!
"I will persist until I succeed. Always will I take another step. If that is
of no avail I will tak
101 - 200 of 11274 matches
Mail list logo