-- Original message --
From: "Richard Lynch" <[EMAIL PROTECTED]>
> On Thu, May 12, 2005 4:43 pm, Chris Shiflett said:
> > From me:
> > The fact that it uses the character set of your current connection to
> > MySQL means that what your escaping function considers t
-- Original message --
From: Niels <[EMAIL PROTECTED]>
> Jennifer Goodie wrote:
>
> > I wouldn't use system calls to move files around. PHP has built in file
> > system functions. Why shell out to do something that is built in?
>
-- Original message --
From: Niels <[EMAIL PROTECTED]>
> Hi list,
>
> I'm doing an intranet website for managing users. I need to be able to
> change passwords, move files and folders around and that kind of thing.
> What is the best way?
>
I wouldn't use system
-- Original message --
From: Jason Barnett <[EMAIL PROTECTED]>
> T.J. Mahaffey wrote:
> > First time post, please be gentle.
>
> You will probably find parse_url() to be useful:
> http://www.php.net/manual/en/function.parse-url.php
>
>
> $url =
> "http://usern
-- Original message --
From: "Tom Rawson" <[EMAIL PROTECTED]>
> I have many places where I use references like this:
>
> if ($fields['flags']['someflag']) ...
>
> or perhaps
>
> if ($_POST['checkboxfieldname']) ...
>
> If there is no value for 'somef
-- Original message --
From: Sam Smith <[EMAIL PROTECTED]>
>
> I've got it working writing out a file (fopen) to CSV (comma delimited) and
> the "header('Content-Disposition: attachment; filename="myFile.csv"')"
> method but it's clumsy for the user to figure out h
-- Original message --
From: "Richard Lynch" <[EMAIL PROTECTED]>
> Please Cc: me, as it's been quite some time since I posted 50 emails per
> day to this list... :-^
>
>
> I'm interested in anybody's experience, good or bad, in what I am naively
> coining as a "Pr
-- Original message --
From: Jeff Oien <[EMAIL PROTECTED]>
> //always gives error message even if one of the two codes entered:
> if ($Promotion_Sub == 'Checked' && ($code != 'D04E' || $code != 'Y04KG')) {
If $code is D04K then it is not Y04KG making the statement
-- Original message --
From: "Louis O'Carroll" <[EMAIL PROTECTED]>
> Hi,
> is there a function that gets the screen resolution of the user?
> you can also reply directly to me... [EMAIL PROTECTED]
>
> Thanks,
> Louis
Search the archives before posting. This was d
-- Original message from Mike Tuller <[EMAIL PROTECTED]>: --
> Ok, so here is what I have. Please check to see if there is a better
> way. There are a lot of database calls to me.
There are. Do it in one query.
>
> $query = "SELECT * FROM hardware_assets WHERE etherne
-- Original message from "Chuck Barnett" : --
> Hi, my new server has fopen by url disabled. My ISP doesn't want to turn it
> on. So is there a way to do an equivilant function some other way? I need
> to read a remote webpage and manipulate it.
>
> Thanks,
> Chuck
-- Original message from Janke Dávid : --
> The sample code (in seperate, this piece of code runs with normal speed,
> but it is this part which runs slowly when executed as a whole,
> everything else is fast):
>
>
> $sqlquery = "SELECT sh_Number, sh_Status FROM servi
-- Original message from "Matthew Sims" : --
>
> www.thewb.com (uses PHP for the interactive areas such as message
> boards, polls, etc.)
>
Up until September 2003 I was the developer for PHP applications for this site. To
the best of my knowledge the message board i
-- Original message from "Chris Boget" : --
> Parse error: parse error, expecting `','' or `';'' in
> /usr/local/etc/httpd/domains/eazypro.com/interactive/cron_scripts/test/rate_
> version.php on line 9
>
> with line 9 being this line:
>
> var $MyVar = MyEnums::thisVa
-- Original message from "John Holmes" : --
> Whatever happened to those monthly stat posts? most posts, most posts per
> thread, etc...?? Who was doing that? I haven't seen one in a while.
>
> ---John Holmes...
>
Bill Doerrfeld
http://marc.theaimsgroup.com/?a=9211645
-- Original message from Kristopher Spencer-Yates : --
> As many of you may have noticed, A friend and I have noticed the odd
> text at the bottom of spam. My friend once stated "What if this is some
> secret code.. they send it to everyone to hide that it is code.. bu
-- Original message from Monty : --
> Anyone! I'm out of online resources and answers. I guess this isn't possible
> to do...
>
> > I've been reading for the last three days about character encodings and
> > such, but, have still been unable to figure out what I think
-- Original message from blackwater dev : --
> the date is a very good question? Here is the info from my system
>
> -rwxr-xr-x 1 root root 1371932 Sep 1 19:50 /usr/bin/php
>
> Not sure why its showing that date - Apache has been restarted.
>
Are you sure apache i
-- Original message from blackwater dev : --
> I have tried recompiling with --with-mssql and --with-mssql=/usr/include/freetds
> It all appears to compile correctly, except the info page does not
> reflect the config was done with mssql at all. below is a snippet of
>
-- Original message from blackwater dev : --
> I need some help...I am helping a local business with a site which
> needs to connect to a mssql db, my webhost uses linux and compiled php
> with the freetds library and when I go to the info page..it does show
> Microsoft
> -Original Message-
> From: bskolb [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 27, 2004 3:59 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Dynamic Function with return?
>
>
> Sample Code:
>
> //
> function testFunction($foo) {
> return $foo=="TES
> >> $token = md5(uniqid(rand(), true));
> >>
> >> .. is a pretty bad idea, since the output could include quotes,
> >> newlines, low-ascii-characters, thereby messing up the form.
> >How do you figure that? md5() only returns 0-9 and a-f characters.
>
> From the manual: http://php.net/md5
>
> I'm trying to rename some variables.
>
> first I have a function -
> randomize (3,4); //has created unique $numbers
>
> then I want to create a function for the renaming:
>
> renameit($sculp); //sends $sculp for the new variable name
>
> and this function (and variations)
>
> function renameit($v
> Thank you for your time on this.
No problem.
>
> // Function that runs reports on logon history
>
> function logonHist() {
>
> db_connect(); //establish connection
>
> $_qlogonhist = ("SELECT username,host_info,status, DATE_FORMAT(timestamp,
> '%d%m%y')
> as formatted_ts FROM custlogon
> http://www.mysql.com/doc/en/Reserved_words.html
>
> [snip]
> 6.1.7 Is MySQL Picky About Reserved Words?
>
> A common problem stems from trying to create a table with column
> names that use the names of datatypes or functions built into
> MySQL, such as TIMESTAMP or GROUP. You're allowed to do it
> > > Jennifer, you're right, I am using fetch_array... I tried to use your
> > > suggestion, and it failing as well, It wont even execute
> > >
> >
> > There's probably an error in my SQL syntax. What is
> mysql_error() telling
> > you?
> I dont believe it to be an error because Ive run thi
> try this:
>
> $query = "SELECT username, password,
> DATE_FORMAT(CURRENT_TIMESTAMP(), '%d%m%y') FROM custlogon";
>
> or if that doesnt work try:
>
> $query = "SELECT username, password, DATE_FORMAT(NOW(), '%d%m%y')
> FROM custlogon";
[snip]
original query as posted:
SELECT username, password, DAT
> Jennifer, you're right, I am using fetch_array... I tried to use your
> suggestion, and it failing as well, It wont even execute
>
> Do you have a better method of looping through all these records??
>
There's probably an error in my SQL syntax. What is mysql_error() telling
you? If it wa
> Ive used this
> $query = ("SELECT username, password, DATE_FORMAT(timestamp,
> '%d%m%y') FROM
> custlogon");
>
> But I recieve unknown index timestamp. *shrug*
>
>
You are receiving the error on an array returned by fetch_array? If so, it
is because the index is "DATE_FORMAT(timestamp, '%d%m%y
>can't seem to figure
> out how to get the number of days integrated in here for $hh that
> are > 24.
> to days:hours:minutes:seconds... This function works for what it
> does, can
> someone embelish it to handle days too?
>
> function convertToHHMMSS($seconds)
> {
> $hoursPerDay
> And I get this:
>
> [snip]
> Violation Information:
> The subject violated the content filtering rule PHP as subject is a
> malacious code - Not Allowed. No attempt was made to repair.
> [/snip]
>
> How can PHP be a code so powerfull it is not even allowed in the
> subject? I thought PHP was
> Hi, is there a way to create excel files with php?
>
> Thanks.
This was answered yesterday and I'm way too lazy to type out my reply again.
Here is an archive search on the word 'excel'
http://marc.theaimsgroup.com/?l=php-general&w=2&r=1&s=excel&q=b
Here is yesterday's thread
http://marc.theai
> > I have a section of my script where I call gethostbyname($hostname) .
> > For some host names that are not registered (according to register.com)
> > I am still getting an IP address returned?
> >
> > What is happening?
> Well, try only the toplevel domain... For example, I have like
> hns3456
> How to use file() function with an "HTTPS:\\www.example.com"
>
>
> $lines = file ('https://www.example.com/');
>
> foreach ($lines as $line_num => $line) {
> echo "Line #{$line_num} : " . htmlspecialchars($line)
> . "\n";
> }
My interpretation of the manual page
(http://us3.php.net/manua
> This doesnt work as expected.
>
> if ( $var === "TEST ONE" || "TEST TWO" || "TEST THREE") {
>
> do something;
>
> }
>
> It returns true on all strings. Ive tried using the or operator
> and the == but these fail as well. Any Ideas?
It behaves exactly as expected. Try checking the manual
> Is there a way to output PHP to MS Excel format?
>
Send the headers for the appropriate application type and then format your
output as HTML with Excel's styles. In order to get a feel for what my
output should be, I just create a sample of what I want in Excel, save as
html and then open the fi
>
> your mixed html and php code here
>
> */ ?>
>
> that way php will take everything inside the tags and
> comment them
> out, regardless of if they are html or php or whatever.
This won't work is your PHP code has comments using /* */ syntax in it
already. I always just through an if(false){
> 93 # When deserialized we are called and need to check if the
> stored IP address equals the client's
> 94 function __wakeup() {
> 95 global $Log;
> 96 if ($_SERVER['REMOTE_ADDR'] !=
> $this->Night['IP']) {
> 97
> >setcookie("UserName", $HTTP_POST_VARS['UserName'],
> time()+(60*10), "/",
> > $HTTP_SERVER_VARS['SERVER_NAME']);
> >setcookie("Password", $password, time()+(60*10), "/",
> > $HTTP_SERVER_VARS['SERVER_NAME']);
> >print "login - set cookie";
>
>
> sorry for kinda answering my own post.
> BUT how can i make the function loop through the whole
> result?
>
> ---
> if (mysql_num_rows($result3) > 0)
> {
> $test = mysql_fetch_array($result3);
> echo minnum($test);
> }
>
> --
>
Someone will probably come up with someth
> Hi All,
>
> I hope you can help me with this:
>
> I have a tabel in my database like this
>
> TEST
>
> fieldnameValue's
>
> testid 1
> testf1 3
> testf2 4
> testf3 0
> testf4 2
> testf5 0
>
> (so this is one record!)
>
> I want to dis
> I have a 163 line file. I get a parse error on line 164. Ideas?
>
You're probably missing a } somewhere.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> I have a problem with the date function
>
> $theday = date("Y-m-d", time());
> echo date((w), $theday);
> ?>
I'm pretty sure the optional second argument for date is a unix timestamp
that you would generate by using either time or mktime or strtotime. You
are passing it something in the for
> What is posted [ from phpinfo() ]:
>
> _POST["color-1"] on
> _POST["color-4"] on
> _POST["color-6"] on
>
>
> Parser:
> foreach($_POST as $ThisVar=>$ThisVal){
> if(ereg("color-", $ThisVar) AND $ThisVal=="on" OR $ThisVal==1){
> $newVarA=explode("-", $ThisVar);
> Anyway, in the textbook and the zip her mySQL query reads:
> ...
> $verify = "select ft.topic_id, ft.topic_title from forum_posts as fp left
> join forum_topics as ft on fp.topic_id = ft.topic_id where fp.post_id =
> $_GET[post_id]";
> .
>
> The part that I'm confu
> Hi
>
> For a few days or maybe even a week or two I'm getting this error
> message in my site.
> This happens when i do : mysql_select_db()
>
> This doesn't happen all the time and there are pages that it happens
> more than others
> so it seems.
>
> I looked in the manual and the explanation the
>
> // the query
>
> $verify = "select ft.topic_id, ft.topic_title from forum_posts as fp left
> join forum_topics as ft on fp.topic_id = ft.topic_id where fp.post_id =
> $_GET[post_id]";
> ...
>
> My question: why - or how can - the columns ft.topic_id and ft.topic_title
>
> strtotime( '+1 month', mktime( 0, 0, 0, 1, 1, 2003 ));
>
> I get back the timestamp for 1/31/2003 and not 2/1/2003.
>
Are you sure?
I tried it on my system (php 4.2.3 freeBSD 4.6.2) and this is the output I
got...
# php
X-Powered-By: PHP/4.2.3
Content-type: text/html
2003-01-01
2003-02-01
Wha
> I am currently using a php class that uses the following syntax:
>
> $value= htmlcleaner::cleanup($value);
>
>
> What exactly is the :: used for? Is there a different syntax for :: ?
The manual has an entire section on this
(http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php) have you
> Tried this and it returns errors of type:
>
> Warning: Wrong parameter count for mssql_result() in
> c:\inetpub\wwwroot\webpage10\example\utilities\dsp_del_images.php
> on line 78
>
> Warning: mssql_result(): supplied argument is not a valid MS SQL-result
> resource in
> c:\inetpub\wwwroot\web
> Ok, here is my query and the bit of code I can't figure out:
>
> $query = "SELECT * from apt_user_t a, apt_company_t b ";
> $query .= "WHERE a.user_cd = b.user_cd ";
> $query .= "ORDER BY a.username";
>
> $search_results = mysql_query($query) or die("Select
> Failed!");
> while
> > > strtotime( '+1 month', mktime( 0, 0, 0, 1, 1, 2003 ));
> > > I get back the timestamp for 1/31/2003 and not 2/1/2003.
> > Are you sure?
>
> Yeah, but I missed something in my above example. If I did this:
>
> strtotime( '+1 month GMT', mktime( 0, 0, 0, 1, 1, 2003 ));
>
> It came back with 1/
Not to beat a dead horse, but...
>From two separate responses:
> And as for Google, I don't feel like I have time to wade through pages and
> pages of irrelevant links until I find what I'm looking for when I have a
> better resource right here.
>
> I've actually learned quite a few useful thin
> Here is what my header look like:
>
> $headers .= "MIME-Version: 1.0\r\n";
> $headers .= "Content-type: text/plain;
> charset=us-ascii\r\n";
> $headers .= "From: ".$name." <".$email.">\r\n";
> $headers .= "To
> I am using php mail and setting all my $headers info to show From:, To:,
What does your call to mail() look like? How are you formatting you
headers?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> I am trying to specify a single php file to contain all the
> variables and I
> just call this file where necessary. What I am running into is
> that I want
> to do this for all the built in functions (i.e. mssql_query) as
> well. I've
> tried numerous attempts but can't get it to operate witho
> --- "Beauford.2005" <[EMAIL PROTECTED]> wrote:
> >
>
> You misspelled method. :-)
>
> Hope that helps.
>
> Chris
It seems like this exact same problem has been addressed before.
http://marc.theaimsgroup.com/?l=php-general&m=105900603231518&w=2
http://marc.theaimsgroup.com/?l=php-general&m=10590
> Been working on this one for a while but can't get it working properly.
> I need a regular expression to match if address is
>
> 1. PO Box
> 2. P.O. Box
> 3. P.O.Box
>
> I got it working with 1 & 2, but it's still not matching 3. Any
> suggestions?
>
> if(preg_match( "/p[\.]o\.* +box/i", trim($_P
> if(!($rs = mysql_query($q))) // querying
> { echo "Query failed". mysql_error(); exit; }
>
>
>$n = 0;
> while ($line = mysql_fetch_assoc($rs)) { //dumping into an array
> foreach ($line as $field => $value) {
> $data[$field][$n] = $value;
> }
> $n++;
> }
>
> and thi
> Is there a way to have your html table represent one color,
> Cause when I click the link it turnes purple, and I want it to stay
> 336699
> no matter what state.
>
> I tried to use css, but it does the whole page.
> And I want the 336699 to be in this table alone.
>
> Can anyone help me out with
> if (isset($page)) {
> include $$_GET['page'];
> } else {
> $page = $home;
> include $page;
> }
>
> would that be right?
> or should i use
>
> if (isset($page)) {
> include $$_GET['page'];
> } else {
> include $home;
> }
>
> hopefully that's right. if so, pretty good for a n00b
>
I don't think I
> I have this:
>
> $query = "LOAD DATA LOCAL INFILE '/home/data.txt' INTO TABLE
> mytable FIELDS
> TERMINATED BY ',' ENCLOSED BY '" . '"' . "' ";
> $result = MYSQL_QUERY($query);
> PRINT "$query2";
>
> The query doesn't take ... but if I cut and paste the printed
> response into
> the mysql server
> Hi everyone,
>
> Can I replace "Submit" buttons on forms with a text button?
> I need to be able to click on a link:
> Edit
>
> and have it submit the form. The form only contains one
> field...does anyone
> know how to do this? I've been searching google for an answer,
> but couldn't
> fin
> select * from main
> left join fof on main.id = fof.id
> left join pub on main.id = pub.id
> left join gov on main.id = gov.id
> left join med on main.id = med.id
> left join ngo on main.id = ngo.id
> left join ow
> The only setting contained in that table is the one im calling for,
> and its value is 25.
>
see what print_r($row) outputs, then you'll at least know what is in the
array.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> I have the following chunk of code:
>
> $sql = "SELECT setting from settings where name='display_rows'";
> include("connect.inc.php");
> print $sql;
> $row = mysql_fetch_row($result);
> $path = $row[0];
> print $path;
>
> It always prints out "1"
>
> But if I r
> Actually, what you see is *exactly* the code being used. Nothing
> has changed
> about it. And whether the variable is regarded as a string or a
> number, it
> gives me the same stupid issue. Not recognizing it as a True
> statement. :\
>
> Is there any way possible that this could be the clien
> $uploaddir = 'C:\Inetpub\wwwroot\pix';
> $filnamn=$_FILES['userfile']['name'];
> I thought of just adding a backslash at the very end of the $uploaddir
> variable but that just leaves me with this error-message instead:
>
> Parse error: parse error, unexpected T_STRING in
> c:\inetpub\wwwroot\al
Without seeing what you have in your includes, it will be hard to determine
where your scope is messed up.
> $subnav = "home";
> include("incHeader.php");
> ?>
>
>
>
> The content would go here.
>
>
>
>
>
> Now, when I try to reference the subnav variable in the inHeader.php or
> incFooter.p
> ! am trying to count the number of items in this table. The table
> has one field in it.
>
> The code I am using is:
>
> $dbquerymeal = "select COUNT(*) from mealtype";
> $resultmeal = mysql_db_query($dbname,$dbqueryshipping1);
> if(mysql_error()!=""){echo mysql_error();}
> $mealcount = mysql_fe
Off the top of my head, try using OR in your query rather than AND
day=\"2\" or day=\"3\"
day probably won't equal both 2 and 3, which is why you are getting 0.
Also, if you group by item name, you are going to get the total for each
itemname, is that what you want, or just the overall total?
>
> 2. a sql_scrubber function to handle the apostrophes
addslashes() http://www.php.net/manual/en/function.addslashes.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> function auth_user($logged_in) {
> if (isset($logged_in)) {
> list($s_username, $hash) = explode(',',$logged_in);
> global $secret_word;
> if (md5($s_username.$secret_word) == $hash) {
> $username = $s_username;
> return $username;
> } else {
> die ("You have t
Since you had problems with quotes yesterday too, I would suggest reading
the manual page on strings so you do not continue to have the same problems
day after day.
http://www.php.net/manual/en/language.types.string.php
> -Original Message-
> From: Micah Montoy [mailto:[EMAIL PROTECTED]
> $filevalue = str_replace("\\", "/", $filevalue);
>
> it is reversing the "\\" to "//" but not replacing them with just a single
> "/".
I think you need to escape your \ so each \ is \\ so your string should be
""
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: ht
> We have a meeting at every Saturday,I'd like to post the
> news and write the date of this Saturday every week,how can I get
> the date of Saturday.
This has not been tested, there might be a bug.
Something like that should be what you want though.
--
PHP General Mailing List (http
You are missing the closing ) around the values you are inserting.
> Anyone see anything wrong with this line of code?
>
> $fine = mysql_query("INSERT INTO
> tblPOItems(poID,poItemUPC,poItemNumber,poItemDescription,poItemInn
> erCasePkg,
> poInnerQuantity,poItemEstQuantity,poItemCostEach,poItemSug
>
> PS some mailservers do not like \r\n, check the manual on mail() and see
> what they suggest, i think it was just \n.
RFC for SMTP states that CRLF (\r\n) should be used. A lot of mail servers
will accept just \n, but it is best to try and be standards compliant, you
have less potential for p
>
>// pull fields from form query
>$to = "[EMAIL PROTECTED]";
>$name = $HTTP_POST_VARS['name'];
>$address = $HTTP_POST_VARS['address'];
>$listname = $HTTP_POST_VARS['listname'];
>$action = strtoupper($HTTP_POST_VARS['action']);
>
>// build headers
>$from = "\"$name\"
>
> foreach($newlines as $newline) {
>
> #how do I get the index of the array each time $newline is printed out?
>
> echo ??;
> }
foreach($newlines as $id=>$newline){
echo $id.''.$newline;
}
read the documentation
http://us3.php.net/manual/en/control-structures.foreach.php
--
PHP Gener
> so do they get the emails from the archive ? ?if so password protect
> please !!
Which one? This list is archived on numerous sites.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> I mean if someone is into programming/php they will have enough
> brains (most of the time) to do that much right?
By that logic they'd also have enough brains to look at the documentation
before asking questions on the mailing list, or to not reply to spam on the
list, etc., etc. and we all kno
> That's fine for that but I have several places that use if's and else's...
>
> Sparky
> > http://us4.php.net/types.string says that heredoc acts just like double
> > quoted, which would mean it expands variables, so I would try just
Than I would suggest reading the manual page (the link I gave)
> Can one use within the heredoc syntax or is there
> another way?? I'm trying to dynamically generate email from
> generic text but with obvious additions, like this:
http://us4.php.net/types.string says that heredoc acts just like double
quoted, which would mean it expands variables, so I would
> When i get these values I want to enter them into the database but
> 1)I should enter only the first 5 (and ignore the rest) into the database
> 2)it has to enter 1 record for every every "id" picked
> eg:
> if id[1], id[2],id[3] and id[4] were picked it should enter this as 4
> differient record
> I need to find if table1.username = table2.domain/table2.username is
If you are using mySQL you can use CONCAT
table1.username = CONCAT(table2.domain,'/',table2.username)
http://www.mysql.com/doc/en/String_functions.html#IDX1174
--
PHP General Mailing List (http://www.php.net/)
To unsubs
> Problem lines
>
> if ($mo == 06 and $dy > 01 and $dy < 09) { $wd = "8"; }
> if ($mo == 06 and $dy > 08) { $wd = "9"; }
>
but if I change my date to 06/02 then no matter what I
> try, $wd always gets the value of 9 (it should be 8 on this
> date). It should
> not get the value 9
HTTP_GET_VARS["id"] is probably empty so this won't work, stick a $ in front
of it.
> -Original Message-
> From: Leif K-Brooks [mailto:[EMAIL PROTECTED]
> Sent: Friday, April 04, 2003 12:38 PM
> To: Tim Haskins
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP] dynamic IF statement
>
>
> If I un
/ and got no change in behavior. It seems to me that
> what I need is something like
> session.cookie_path = /, ../
> but that doesn't work. Any other ideas?
>
> - Anthony
>
> "Jennifer Goodie" <[EMAIL PROTECTED]> wrote in message
> news:[EM
PHP parses includes inline, so whatever the scope is where the file is
included, is the scope of the variables that the include contains. You can
declare the variables global in your fuction and it will use what was
included, that would be the quick fix, you could also switch your include to
use D
Your cookie path is "" not "/" so your cookie is only readble by the
directory it was set in. Check your session.cookie_path
http://www.php.net/manual/en/ref.session.php
> -Original Message-
> From: Anthony [mailto:[EMAIL PROTECTED]
> Sent: Friday, April 04, 2003 12:03 PM
> To: [EMAIL PR
http://www.php.net/manual/en/install.apache2.php
> -Original Message-
> From: Jason Smith [mailto:[EMAIL PROTECTED]
> Sent: Thursday, April 03, 2003 5:22 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Which PHP version is stable with apache 2.0.39
>
>
> Hi,
>
> Need some information as
rying to run
it, so you can see what is wrong with it.
> -Original Message-
> From: Sebastian [mailto:[EMAIL PROTECTED]
> Sent: Thursday, April 03, 2003 2:33 PM
> To: Jennifer Goodie; php list
> Subject: Re: [PHP] no worky :|
>
>
> thanks for pointing that out ye
Have you checked to make sure your query works, the syntax looks really odd.
I've never seen INSERT ... WHERE
> -Original Message-
> From: Sebastian [mailto:[EMAIL PROTECTED]
> Sent: Thursday, April 03, 2003 2:20 PM
> To: php list
> Subject: [PHP] no worky :|
>
>
> Hello,
>
> This form is
You can accomplish this by enabling multiviews in your httpd.conf
> -Original Message-
> From: Teren Sapp [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, April 02, 2003 3:18 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Making it so the .php isn't needed
>
>
> Hi, I had it setup on my server
Try sending a control d to signify EOF, because fread will only read to end
of file. But I wouldn't do 255 because you might want to enter more. Maybe
stick a while !EOF in there.
> -Original Message-
> From: John Nichel [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 01, 2003 6:01 PM
>
It is faster to do a count(*)
-Original Message-
From: Liam Gibbs [mailto:[EMAIL PROTECTED]
Sent: Monday, March 31, 2003 1:31 PM
To: php list
Subject: [PHP] Question on response time, SQL vs. PHP
I'm trying to do a count(*) in SQL. Would it be faster to do a or b below?
a: just do a sim
--
Tim Haskins
"Tim Haskins" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Wow, that's weird- I had just tried it and that didn't work, so I thought
it
> might be some special php thing goin on- thanks for your help!
>
> --
> Tim H
, 2003 12:17 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] if statment
Also, take a look at isset() and empty()
http://php.net/empty
http://php.net/isset
Jennifer Goodie wrote:
> so change it to ""
>
> -Original Message-
> From: Tim Haskins [mailto:[EMAIL PROTECTED]
n show the following text.
--
Tim Haskins
"Jennifer Goodie" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> if( $HTTP_GET_VARS["pr_ID"] == "nothing"){
> echo "there are no products";
> }
> http://www.php.net/manual/en/c
1 - 100 of 122 matches
Mail list logo