On 28 July 2010 06:13, Bill Mudry wrote:
> Along with suggestions from this group, I was able to transfer parameters
> across html pages so that
> a user could pick a wood species and the new page would faithfully report
> details on that wood.
> Later (with help from the group again) I was so gla
Along with suggestions from this group, I was able to transfer
parameters across html pages so that
a user could pick a wood species and the new page would faithfully
report details on that wood.
Later (with help from the group again) I was so glad to see that
these pages were able to pick up
JP
Hi All,
I have this code where user can search a song or the entire song title. It
looks like when a user search a single word its searching and giving the
proper results. However if the user wants to search the entire sentence its
not giving the proper results. For example let say I have searched
Peter D wrote:
$result = mysql_query ( "SELECT * FROM 'high_score' ORDER BY score DESC
LIMIT 10");
Single quotes are invalid around entity names, you should be using
backticks to surround high_score.
You really should be checking the return value from mysql_query. It
tells you if an error o
Hi everyone!
I hope my request can be answered by someone. I'm new to PHP and whole
server issue!
I'm trying to test my PHP scripts locally on my PC. It seems
Apache/PHP/MySql and PhpMyAdmin are working correctly when I test simple php
files. Here's the problem :
I have two files:
"display
From: Stephen Deacon [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 07, 2007 6:12 PM
To: Gustav Wiberg
Subject: Re: [PHP-WIN] Help with if
I did try doing
echo "rank=" . $rank;
echo "unregistered=" . Unregistered;
if ($rank) !== Unregistered) {
echo "true";
else
be
if ($rank !== Unregistered) {
OR
if (($rank) !== Unregistered) {
Or as someone else has pointed out:
if ($rank !== $Unregistered) {
From: Stephen [mailto:[EMAIL PROTECTED]
Sent: Monday, August 06, 2007 5:18 PM
To: php-windows@lists.php.net
Subject: [PHP-WIN] Help with if
i'm tryin to ge
tered) {
You have two right paranthesis and one left...
if ($rank) !== Unregistered) {
Could be
if ($rank !== Unregistered) {
OR
if (($rank) !== Unregistered) {
Or as someone else has pointed out:
if ($rank !== $Unregistered) {
mailto:[EMAIL PROTECTED]
Sent: Monday, August 06, 2007 5:18 PM
To: php
Stephen wrote:
i did take out the ) after them both and it still is not working. I have
copy and pasted it, I just removed the huge blog of info that was given from
PayPal that is not important.
Make sure you have display_errors on and error_reporting is set to E_ALL
in your php.ini. Without
do not
> match.
>
> Also, is Unregistered a defined type?
> If not, how do you compare a variable ($rank) against it ?
>
>
> Luis
>
>
> -Original Message-
> From: Stephen [mailto:[EMAIL PROTECTED]
> Sent: segunda-feira, 6 de Agosto de 2007 16:31
> To: php-wi
Stephen,
Should be if ($rank != Unregistered)
However, what is Unregistered? Is it a variable, constant?
There is a possibility that it should be ($rank != $Unregistered)
If you are comparing $rank to an actual text value then it should be
($rank != "Unregistered")
Hopefully that helps.
re a variable ($rank) against it ?
Luis
-Original Message-
From: Stephen [mailto:[EMAIL PROTECTED]
Sent: segunda-feira, 6 de Agosto de 2007 16:31
To: php-windows@lists.php.net
Subject: Re: [PHP-WIN] Help with if
i did take out the ) after them both and it still is not working. I have
c
Hi Stephen,
It looks like there are a few problems:
To: php-windows@lists.php.net
Sent: Monday, August 6, 2007 11:18:22 AM (GMT-0500) America/New_York
Subject: [PHP-WIN] Help with if
i'm tryin to get the if command to work on my site so that I can get the
buttons to show for registering
i did take out the ) after them both and it still is not working. I have
copy and pasted it, I just removed the huge blog of info that was given from
PayPal that is not important.
"Stut" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Stephen wrote:
>> i'm tryin to get the if comma
Stephen wrote:
i'm tryin to get the if command to work on my site so that I can get the
buttons to show for registering if a certain user is at the first rank.
The current code that I have is as follows;
Curious PHP tag, you don't want the ) after $rank and Unregistered I'm
guessing should
i'm tryin to get the if command to work on my site so that I can get the
buttons to show for registering if a certain user is at the first rank.
The current code that I have is as follows;
https://www.paypal.com/cgi-bin/webscr";
method="post">
https://www.paypal.com/en_US/i/btn/x-click-
but24
Just in case, the good syntax is mysql_close ($handler) where handler is a
opened valid mysql database ?
- Message d'origine
De : sam rumaizan <[EMAIL PROTECTED]>
À : php-windows@lists.php.net
Cc : [EMAIL PROTECTED]
Envoyé le : Lundi, 2 Avril 2007, 8h11mn 34s
Objet : [PHP-WIN
When I run my PHP page I get this error:
An error occurred in script 'C:\Program
Files\xampp\htdocs\xampp\Activity_Log\html\ucd.php' on line 114:
mysql_close(): no MySQL-Link resource supplied
Date/Time: 4-2-2007 09:29:34
-
Don't be flakey. Get Yaho
Hi all,
There is so much info on google/pnp.net etc on this but all of them seem to
work some of the time and the rest of them seem to work the rest of the
time;).
I just can't seem to find what is the most secure and correct/guaranteed way
of setting this up.
A windows 2003 server, running IIS6, a
Hi all,
There is so much info on google/pnp.net etc on this but all of them seem to
work some of the time and the rest of them seem to work the rest of the
time;).
I just can't seem to find what is the most secure and correct/guaranteed way
of setting this up.
A windows 2003 server, running I
I am tring to store and display the number of requests
that a user has submitted via a hidden field. I've
created a form that does a some simple addtion.
Everything works, but I need some direction as to how
I can store each number the user puts in and to
display them.
Please see below:
http://
that's what you need:
$str = 'hello "' . ($i+1) . '"';
you must put $i+i in brachets in order to evaluate first the expresion
$i+1 and then concatenates it to the string
best regards
mihai
i'm not young enough to know everything
Hello all;
I am a new PHP user. (But not new at programing.)
Raymond
This produces what I think you want:
$str = 'hello' . ($i+1);
Mike
- Original Message -
From: "Raymond Still" <[EMAIL PROTECTED]>
To:
Sent: Wednesday, January 12, 2005 4:50 PM
Subject: [PHP-WIN] help in understanding string / integer concatenatio
Hello all;
I am a new PHP user. (But not new at programing.) I'm
running Win XP, Apache, PHP 5.0.3 (and PostgreSQL 8,
not that that should make a difference).
I'm trying to use PHP to generate drop down lists of
arbitrary length in a form ( and )
I've come across something strange, to me, in usi
I have written a registration page in php and have a number of edit boxes
and drop-down lists. The lists are pulling data out of their respective
tables, whereas the edit boxes are just for saving data.
Now my main table where all my data is being saved is called Business. Onto
this I have a table
Good evening,
Let me explain my problem. See i have few php experience, i do use
includes and other cool PHP features and can find programing and mistype
errors rapidly. Unfortunently, i work alot and don't currently have the
time to continu some tutorials I wanted to finish.
As of now, I am
ED]
.To: CBharadwaj ; Gryffyn, Trevor
.Cc: [EMAIL PROTECTED]
.Sent: Saturday, September 04, 2004 2:30 AM
.Subject: Re: [PHP-WIN] Help required for developing word reports.
.does this article help? just to get you thinking... why do you *need*
word? are there any other reasonable altern
t your Question " Does this article help ?".
Bye
Bharadwaj.
- Original Message -
From: [EMAIL PROTECTED]
To: CBharadwaj ; Gryffyn, Trevor
Cc: [EMAIL PROTECTED]
Sent: Saturday, September 04, 2004 2:30 AM
Subject: Re: [PHP-WIN] Help required for developing word reports.
does this ar
TED]
To: CBharadwaj ; Gryffyn, Trevor
Cc: [EMAIL PROTECTED]
Sent: Saturday, September 04, 2004 2:30 AM
Subject: Re: [PHP-WIN] Help required for developing word reports.
does this article help? just to get you thinking... why do you *need* word? are
there any other reasonable alternatives?
does this article help? just to get you thinking... why do you *need* word? are
there any other reasonable alternatives? could you format html so that it would print
like word would print it?
CBharadwaj <[EMAIL PROTECTED]> wrote:Dear All,
I want to developing reports using PHP.
These report
Dear All,
I want to developing reports using PHP.
These reports i have to develop on MS WORD.
I have a database with multiple records
VAL 1 | VAL 2
-
VAL3 | VAL 4
VAL 5 | VAL 6
H
G'day -
I've just installed PhP 4.3.8 for win - running Win2000. Php seems to running ok but
when I attempt to use "http://localhost/filename";>
What is your name:
The info I type into the text box on the htm page gets passed on the url to the php
page, but I get a "Variable Undefined" error
On Wed, 11 Aug 2004 22:08:09 -0300, oleks <[EMAIL PROTECTED]> wrote:
> Hi All
>
> How to fix a NS7 problem where it wants to add a .PHP extension to all
> filenames
>
> I try to use this funnction:
>
> function download ($fileDir, $fileName) {
> $completeFilePath=$fileDir.'/'.$fileName;
>
Hi All
How to fix a NS7 problem where it wants to add a .PHP extension to all
filenames
I try to use this funnction:
function download ($fileDir, $fileName) {
$completeFilePath=$fileDir.'/'.$fileName;
header('Pragma: no-cache');
header("Content-type: archive/exe\n
Content-Disp
ho do you make a eregi so it looks at the var as a single line
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> Hi,
>
> I'm using Microsoft Visual C++ to compile php adding IngresII Database
> support and after download the source code what file should I put
> "--with-ingres=DIR" ? Is it "configure" file or this one is used only to
> compile the unix source. Should I have php_ingres.dll ? Where ?
> Does
You can download it from my site http://kromann.info/php4.php
- Frank
> Can someone help me find a copy of the extension of php_printer.dll
> preferably for the latest version of PHP but I will not be picky I have
> installed 4.3.2 on my win2k server and if I have to upgrade well that's
> great.
Jeffrey D. Means wrote:
Can someone help me find a copy of the extension of php_printer.dll
preferably for the latest version of PHP but I will not be picky I have
installed 4.3.2 on my win2k server and if I have to upgrade well that's
great. Thanks in advance.
---
Jeffrey D. Means
CIO for Mea
Can someone help me find a copy of the extension of php_printer.dll
preferably for the latest version of PHP but I will not be picky I have
installed 4.3.2 on my win2k server and if I have to upgrade well that's
great. Thanks in advance.
---
Jeffrey D. Means
CIO for MeansPC
[EMAIL PROTECTED]
w
Hi,
Any one who has experiences in setting the value of COM object's Attribute
property
please help...
The COM runs well in ASP:
<%asp
'The Attribute property specifies and retrieves name-value pairs.
'
'Syntax:
'
'Header.Attribute(bstrName) = String
'String = Header.Attribute(bstrName)
'
'Par
La lapidazione di Amina è stata approvata
Poche firme sono giunte al Tribunale Supremo della Nigeria che ha ratificato la
sentenza.
È stata solamente ritardata l¹esecuzione di 2 mesi perché Amina possa
separarsi dal suo bambino. Trascorso questo periodo sarà interrata fino al collo e
lapidata
sorry, it's late gotta get some sleep, but this had been stumping me...
have to change a value in the URL, say:
www.foo.com/test.php?var1=10&var2=10
i want to make that a clickable link but set var1 = 20. i'm getting
tired so i may not be searching php.net correctly...
would i EREGI_REPLACE i
Hi Rabih!
Try PEAR::Auth package. http://pear.php.net/package/Auth
Regards,
Firman
- Original Message -
From: "Rabih" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, March 10, 2004 6:36 PM
Subject: [PHP-WIN] Help with authenication against exc
Hello,
I am trying to authenticate my users to the LDAP directory on exchange 5.5.
Anyone has an idea on how to do it plz ??
I am using PHP discussion forum, MYSQL, and IIS as the web server. Any Help
would be highly appreciated.
Thanks a lot..
--
PHP Windows Mailing List (http://www.php.net/)
i followed this tute on how to set up the php and apache. and still i have
not joy. my localhost command isnt working at all. i am at a loss. really
need help with this.
http://madeyeted.no-ip.com/tutorial1.html
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.p
Subject: Re: [PHP-WIN] HELP CSV's
If I was to save an excel file as CSV file, would the file then just
contain a list of values (the excel cell values) delimited by commas? No
column headings(assuming Excel allows column headings).
Cheers
Tryst
--
PHP Windows Mailing List (http://www.ph
If I was to save an excel file as CSV file, would the file then just contain a list of
values (the excel cell values) delimited by commas? No column headings(assuming Excel
allows column headings).
Cheers
Tryst
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://ww
On Tue, 2004-02-17 at 08:39, idrifter wrote:
> As far as the newline characters I don't know if its
> feasible for your particular project but you could
> strip the newline characters out with something like
> this:
If the CSV file is proper formated, then Excel will be able
to handle those new l
bruary 17, 2004 8:16 AM
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-WIN] HELP CSV's
> >
> >
> > Good day to you All,
> >
> > Hi Im working on a project where it is nessary to download the values of the
> > tables in the database and
> > format the
esday, February 17, 2004 8:16 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] HELP CSV's
>
>
> Good day to you All,
>
> Hi Im working on a project where it is nessary to download the values of the
> tables in the database and
> format them in csv (comma separated v
The trivial standard solution is to quote the entries, and quote quotes
inside the entires.
On Tue, 2004-02-17 at 07:15, dwight ian wrote:
> Good day to you All,
>
> Hi Im working on a project where it is nessary to download the values of the tables
> in the database and
> format them in csv
you could also delimit the fields by tab spaces (tab delimited) use
google...
-Original Message-
From: dwight ian [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 17, 2004 8:16 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] HELP CSV's
Good day to you All,
Hi Im working on a project
To get around the comma problem you can enclose your
fields in quotes:
"column 1 da,ta","colu,mn 2 data","column,3 data"
As far as the newline characters I don't know if its
feasible for your particular project but you could
strip the newline characters out with something like
this:
$new_string
Good day to you All,
Hi Im working on a project where it is nessary to download the values of the tables in
the database and
format them in csv (comma separated values) files in order for them to be viewed in a
spreadsheet
application (ie Microsoft Excel).
The problem happens when the value
It would be helpfull if you provided the reading audience with some code.
-Original Message-
From: Paul
To: [EMAIL PROTECTED]
Sent: 2003-12-30 02:48
Subject: [PHP-WIN] Help needed: Why does my web page hang?
I am a php newbie developing a shopping cart for a web site.
If I start at
I am a php newbie developing a shopping cart for a web site.
If I start at http://www.arylis.com/test/page1.htm and click a few buttons,
the response is prompt at first, but eventually the web page seems to just
hang, and takes half a minute or so to respond. Sometimes I get a timeout
error messa
I finally solved my problem and have another question.
How can I go about making some changes to php_printer to help
others with similar difficulties. Once I had some informative
error messages, I solved things in a few minutes. But it took
my own custom compile of php_printer to get there. I d
When I replace button submit with image "checkout.gif" and "update.gif" , I
do not get value of $B1 and $B2 more , please show me how to get $B1 $B2
when I replace button submit with image , thank you .
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.p
I've had success with using the printer functions on Windows. But so far,
printer_draw_bmp returns TRUE but outputs nothing visible.
Does this function work? My .bmp files are saved with Windows Paint using
monochrome, 16-bit, 256 color, and 24-bit color for filetypes. I've also
tried saving fr
I have 50 products , I want to display 10 products per page , if I use LIMIT
, I will make 5 links , but I want the code will make 5 links automatically
for me , I do not know how to do , anyone can help me , thank you
".$row["name"]."
".$row['pri
an someone help me out with xslt on windows?
I have copied the 3 dll's in to the c:\WINDOWS\SYSTEM32 directory
(sablot.dll, expat.dll, iconv.dll) I have a very simple php page..
$xh = xslt_create();
// Process the document, returning the result into the $sDXML variable
$sDXML = xslt_pr
The unix box webserver is probaly set to not to allow
implict fetch with the GET method. Try use this:
$ = $_GET[];
-Original Message-
From: Lawrence
To: [EMAIL PROTECTED]
Sent: 2003-11-18 14:48
Subject: [PHP-WIN] help with header on UNIX server
I have two page header.htm and
You miss the http:// before the url it could be part of the problem.
Eric
At 14:48 18/11/2003, Lawrence wrote:
I have two page header.htm and header.php
This is header.htm
Link Google
Link Yahoo
Link Hotmail
Link Php.net
This is header.php
When I run on my computer , IIS and windows xp , they
I have two page header.htm and header.php
This is header.htm
Link Google
Link Yahoo
Link Hotmail
Link Php.net
This is header.php
When I run on my computer , IIS and windows xp , they run well , but when I
upload them on UNIX server , they run nothing , they don't redirect , I ask
admin why h
I am trying to execute/prepare statements on PEAR framework. On the documentation page
their is dbh->statement(), can someone tell me what is this dbh, is it database
connection or something else, and how it can be prepare.
Imran
n Nelson [mailto:[EMAIL PROTECTED]
Sent: 28 October 2003 22:13
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Help with COM
Hello,
I am trying to write some excel functions in PHP 4.3.3 using the COM
interface. The objective it to create a "BottomEdge" border with regular
line styles etc... Th
Hello,
I am trying to write some excel functions in PHP 4.3.3 using the COM interface. The
objective it to create a "BottomEdge" border with regular line styles etc... The
actual visual basic code that the macro recorder in excel writes goes as follows:
Range("A13:E13").Select
Selection.Bo
Hi,
check in your php.ini if you've got option "short_open_tag" set to On or try to use
full php open tag - " I have been away from my computer for many months and thus, have forgotten many of
> the php basics.
>
> I'm trying to get "back into the swing of things" and the problem I'm having is t
I have been away from my computer for many months and thus, have forgotten many of the
php basics.
I'm trying to get "back into the swing of things" and the problem I'm having is that
my php code is not being parsed. Instead, its being treated like HTML and the code
just shows up on the screen
Hi,
does anyone know how to handle file and directory paths on a IIS 5.0
server? Problem is that the server has multi-domain and each domain has
an
associated 'root' dir below e:\webspaces.
So if one uses relative path strings, an opendir() for example will fail.
One has to use "e:\\webspaces
probably
-Original Message-
From: Kamran fff [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 04, 2003 2:23 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Help me out with Session problem
Hi,
I have WinPro2000 with IIS (PWS) and PHP4.
When i strat session receive an error.
Can you
Hi,
I have WinPro2000 with IIS (PWS) and PHP4.
When i strat session receive an error.
Can you tell me how i can solve this problem
Thanks
Kamran Fayyaz
-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
: "Leskó József" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, August 30, 2003 1:20 PM
Subject: [PHP-WIN] Help me!
Hello,
I am a 17 years old boy from Hungary, and I have problem with PHP. I hope
that you can help.
The problem: I ask the width and height of the sc
Why do you want to do this?
By the way, it possible with some programming,
but it is not recommended to do.
-Original Message-
From: Leskó József
To: [EMAIL PROTECTED]
Sent: 30-8-03 13:20
Subject: [PHP-WIN] Help me!
Hello,
I am a 17 years old boy from Hungary, and I have problem with
Hello,
I am a 17 years old boy from Hungary, and I have problem with PHP. I hope that you
can help.
The problem: I ask the width and height of the screen with JavaScript, and when the
JavaScript give the values to the PHP they become string, so I can't use the values as
a number. I tried to c
Hello!
I need two compiled extensions for php 4.3.3:
- bcompiler (I think somebody has it already compiled)
- php-xerces (source is available at
http://ggodlewski.host.sk/download/php-xerces/php-xerces-0.6.tar.gz)
I tried to build them with mingw32 and cygwin - without effect :(
Unfortunately I d
Hi,
I'm translating the file / chapters / streams.common.xml and I'm facing some
problems so I need some help please:
1. "memory mapped files"
I don't understand the meaning of this expression, so I can just make a
temporary translation in this moment. I need to know the meaning or function
of t
Hi
I just want to ask if I have to translate this expression: struct stat
in:
sb is a regular, system defined, struct stat.
Apparently, it is not translatable and I was asked to no do it; but some
translators did it: for ex. the French translation.
So, please do I have to translate it or keep it
to connect to db via ODBC:
$dbhandle = @odbc_connect('your_ODBC_DSN',
'user','password');
if($dbhandle == 0)
{
die('Database not connected');
}
where "your_ODBC_DSN" is name of your ODBC source;
then you use all odbc instructions to work with your
db using for example
I am trying to connect MS Access XP with PHP.
Could Some One Tell Me How to Write a Code For that. (A Sample Code Will Be
Better For Me To Understand).
Advance Thanks.
By Kishore.
_
It's all happening @ F1. Feel the thrill!
http://
The page only timeouts of nothing is sent to the browser in the duration
of inserting the 1000+ records, if you could spit out a simple
'currently inserting record x of y'
every few hundred records. you could use DHTML/Javascript to overwrite
the same line on the page. whatever you want to make
I have a script that uploads a data file and inserts several thousand
records into a database table. The script seems to time out when it
exceeds the time out limit imposed by CGI. I am using the
set_time_limit() function, to extend the scripts running time, however
this only works until the CGI l
for($i=0; $ihttp://ellingsworth.org/john/
-Original Message-
From: Fernando Soto [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 15, 2003 11:41 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] help with multiple select
Hello there
I'm trying to get the options selected from a
Hello there
I'm trying to get the options selected from a multiple select list, but the
only one thing that i get is the first letter from one element, check this
please
This is the form code.
Fernando
Felipe
Felix
Carlos
Eli
an
Hello,
I've written a custom PHP extension on Windoze using Visual C++ 6.0.
I'm using the latest source, 4.3.2, and have the environment setup
correctly.
When I compile however, the compiler cannot find strings.h. Ive
searched my system, and I indeed don't have strings.h (duh), but I do
have
Hey I need your help I want to change a part of the config.php file in my
script which is
$allow = "1"; // to allow comments 1 = yes 0 = no
I'm trying to change it to $allow = "0"; using a other file I have this code
but i get errors
If you have another code i could use please help me out
thing actually went trough
>
> Sorry to be so thorough, but it's just to be as clear as I can
>
>
> Luis
>
>
> - Original Message -
> From: "Stephen" <[EMAIL PROTECTED]>
> To: "toby z" <[EMAIL PROTECTED]>
> Cc: &quo
d
> it would probably be nothing to do with it.
>
> Unless I am mistaken
>
> Stephen
>
> - Original Message -
> From: "toby z" <[EMAIL PROTECTED]>
> To: "Stephen" <[EMAIL PROTECTED]>
> Cc: "Windows Helplist (PHP)" <
something actually went trough
Sorry to be so thorough, but it's just to be as clear as I can
Luis
- Original Message -
From: "Stephen" <[EMAIL PROTECTED]>
To: "toby z" <[EMAIL PROTECTED]>
Cc: "Windows Helplist (PHP)" <[EMAIL PROTECTED
ows Helplist (PHP)" <[EMAIL PROTECTED]>
Sent: Monday, June 16, 2003 10:37 AM
Subject: Re: [PHP-WIN] Help please: undefined index in sample code
> my dear man
> if u try
>
> >> $tireqty = $_POST['tireqty'];
>
> with register globals on
>
> it g
r and find the
>> error_reporting
>> option. I recommend you change your settings to
>> error_reporting = E_ALL & ~E_NOTICE
>> This should solve your problem.
>>
>> - Original Message -
>> From: "Stuart Felenstein" <[EMAIL PROTECT
> From: "Stuart Felenstein" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Saturday, June 14, 2003 10:18 AM
> Subject: Re: [PHP-WIN] Help please: undefined index in sample code
>
>
> > Yes, register globals are now on. Though it doesn't
ommend you change your settings to
error_reporting = E_ALL & ~E_NOTICE
This should solve your problem.
- Original Message -
From: "Stuart Felenstein"
To:
Sent: Saturday, June 14, 2003 10:18 AM
Subject: Re: [PHP-WIN] Help please: undefined index in sample code
> Yes,
: "Stuart Felenstein" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 14, 2003 10:18 AM
Subject: Re: [PHP-WIN] Help please: undefined index in sample code
> Yes, register globals are now on. Though it doesn't apparently matter.
>
> Stuart
>
> t
Yes, register globals are now on. Though it doesn't apparently matter.
Stuart
toby z <[EMAIL PROTECTED]> wrote:
register globals on or off ?
--- Stuart Felenstein wrote: > I can't believe
Chapter 1 , section 1 and I'm off to a bad start
> already.
> Using this form and script, I keep gett
register globals on or off ?
--- Stuart Felenstein <[EMAIL PROTECTED]> wrote: > I can't believe
Chapter 1 , section 1 and I'm off to a bad start
> already.
> Using this form and script, I keep getting "undefined index" for
> the variables I declare in the script. Running PHP 4.3.2 on XP
> P
I can't believe Chapter 1 , section 1 and I'm off to a bad start already.
Using this form and script, I keep getting "undefined index" for the variables I
declare in the script. Running PHP 4.3.2 on XP Pro. Thanks.
Stuart
Form:
Item
Quantity
Tires
Oil
Spark Plugs
I want to display my news in this format
05/05/2003
- BLAH ABLA
- BLAH ABLAJ
- BLAH ABLAJ
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Try something like:
if ($extensao != '.rep') {...
hth Henrik Hornemann
> -Oprindelig meddelelse-
> Fra: Gustavo Andrade [mailto:[EMAIL PROTECTED]
> Sendt: 29. maj 2003 00:35
> Til: [EMAIL PROTECTED]
> Emne: [PHP-WIN] HELP ME PLZ
>
>
> I HAVE THIS F
I HAVE THIS FOLLOWING CODE THAT WORKS PERFECTLY, IT IS A SMALL UPLOAD
SYSTEM.
(IM FROM BRAZIL)
O arquivo foi transferido!";
}else{
echo "O arquivo não foi transferido!";
echo "Nome, caminho ou extensão de arquivo
Inválido";
}
?>
into the $extensao=substr($arquivo_name, -4); i get the value of the
1 - 100 of 340 matches
Mail list logo