It would be helpful if you posted that error. You can get it by changing
the die to
$queryr = mysql_query($query) or die(mysql_error());
Without knowing the error, you problem will be harder for everyone to debug.
-Original Message-
From: Nuno Lopes [mailto:[EMAIL PROTECTED]]
Sent: Mon
> $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
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]
> 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
> 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
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?
>
> ! 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
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
> $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
> 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
> 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
> 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
> 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
> 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
> 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
> 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
> 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(!($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
> 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
> --- "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
> 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
> 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
> 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
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
> > > 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/
> 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
> 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
> 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
>
> // 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
>
> 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
> 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
> 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
> 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);
> 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
> 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
This is not a MAC IE problem, it is the way browsers work. If the MIME type
is mapped to an application, the browser will launch the application. IE
does it inline, while Netscape tends to launch it separately.
You can send false headers with a made up type and a missing file extension,
but then
Most RDB programs come with an integrated backup solution. You might want
to look into those.
As far as why your code is not working, you are not looping through the
result set, you are only pulling one result. A database does not store data
in order, it puts it where ever there's a hole, so the
You don't.
>From http://www.php.net/manual/en/control-structures.foreach.php
"Note: foreach does not support the ability to suppress error messages using
'@'."
You should check the validity of your argument before passing it to foreach
if(is_array($array)){
foreach($array as $key=>$val){
>Actually I didn't. ;-)
>$GLOBALS[$key] is incorrect and depricated AFAIK.
>$GLOBALS['$key'] (with the single quotes) is the proper way to write these
Wouldn't it need to be $GLOBALS["$key"] because single quotes tell the
parser not to expand variables? I think you are misinterpreting the part o
TRy URL Encoding the string.
-Original Message-
From: Tomás Liendo [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 26, 2003 2:46 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Problem with setcookie function
Hi people I'm a beginner...
I'm trying to pass variables between pages, I need use a v
You could just make all of your links relative to the webroot. "/index.php"
instead of "index.php" and "/messages/index.php" and "messages/index.php" I
don't know why you would want to use PHP to do this for you, it is a pretty
basic HTML concept.
-Original Message-
From: Vernon [mailto:
oops, it should read: "/messages/index.php" instead of (not and)
"messages/index.php"
That make make what I said really confusing
-Original Message-
From: Jennifer Goodie [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 26, 2003 4:45 PM
To: Vernon; [EMAIL PROTECTE
You're looping endlessly because SESSION is not getting registered anywhere.
-Original Message-
From: Kevin Heflin [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 26, 2003 5:16 PM
To: php-general
Subject: [PHP] auto_prepend_file
Trying to use
php_value auto_prepend_file /path/to/file/ch
http://www.php.net/manual/en/features.file-upload.php
>From the page listed above: "Related Configurations Note: See also the
file_uploads, upload_max_filesize, upload_tmp_dir, and post_max_size
directives in php.ini"
I would read that manual page as it deals with file uploading support.
-Or
A world writeable directory is a security risk. Why not just fix the
owner/group and only give the permissions needed, 775 at most.
-Original Message-
From: Dan Rossi [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:45 AM
To: [EMAIL PROTECTED]
Subject: RE: [PHP] Uploading Files
Or you could just do it correctly the first time and be done with it. :)
-Original Message-
From: Philip J. Newman [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 10:23 AM
To: Jennifer Goodie; Dan Rossi; [EMAIL PROTECTED]
Subject: Re: [PHP] Uploading Files Via PHP
You could
Read the manual section on headers. A header must be sent before any other
output, including whitespace, so putting it in the middle of an HTML page is
totally not going to work. http://www.php.net/manual/en/function.header.php
-Original Message-
From: David Banning [mailto:[EMAIL PROT
That is because it is not saying that is all that can be in the string. The
'Re' matches that pattern. Put a ^ at the beginning to signify it must
start with the pattern and a $ at the end to signify it must end there.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
If your include is located somewhere on the site you should refer to it as
$_SERVER[DOCUMENT_ROOT]/pathtofile/filename.php so that your paths don't get
messed up from chaning the includes etc.
-Original Message-
From: Beauford.2002 [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 2
omeone tacks on " Jr." or something like that to the end of their name.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 3:05 PM
To: Jennifer Goodie
Cc: John W. Holmes; 'John Nichel'; [EMAIL PROTECTED]
Subject: RE: [PHP]
I've never tried with fopen, but I know you can with fsockopen. That
doesn't really answer your question, but I thought it might help out.
Here's an example with fsockopen;
$fp = fsockopen($domain,80, $errno, $errstr, 30);
if (!$fp){
//error handling stuff
}
else{
fputs ($fp, "PO
That is a really, really, really poor example. Tha name says it all. It
gets the magic quotes setting for gpc(get, post, cookie). You can figure
out what most PHP functions do just by looking at their names, that's
actually what I like about PHP.
-Original Message-
From: Beauford.2002 [
= does not take the wildcard (%).
-Original Message-
From: Harry.de [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 2:38 PM
To: [EMAIL PROTECTED]
Subject: [PHP] mySQL query - command "LIKE" OR "="
Hi,
i want to make a mySQL query where the result should be
in $result1
any sting
y.
>
> Beauford.2002 wrote:
>
> >No, the name explains absolutely squat. What is a magic quote? Sounds
like
> >something I smoked in the 60's. Maybe to you it makes sense as you know
what
> >it does. To me it means absolutely nothing - nor does the PHP manual
explai
If the includes are within the website, using
$_SERVER[DOCUMENT_ROOT]/pathtofile/file is a good way to go.
-Original Message-
From: John W. Holmes [mailto:[EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 2:10 PM
To: 'Greg Macek'; [EMAIL PROTECTED]
Subject: RE: [PHP] require/include from a
if( $HTTP_GET_VARS["pr_ID"] == "nothing"){
echo "there are no products";
}
http://www.php.net/manual/en/control-structures.php
http://www.php.net/manual/en/
-Original Message-
From: Tim Haskins [mailto:[EMAIL PROTECTED]
Sent: Monday, March 31, 2003 11:56 AM
To: [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
, 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]
--
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
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
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
>
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
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
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
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
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
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
/ 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
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
> 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
> 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)
> 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
> 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
> 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
> 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
> 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
>
> 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
>
>// 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\"
>
> 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
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
> 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
> 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
> 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
> >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.
> 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
>
> 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){
> 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
> 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
> 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
> > 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
> 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
> 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
>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
> 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
> 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
> 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
> > >
> >
> > 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
> 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
> 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
> 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
1 - 100 of 122 matches
Mail list logo