"localhost", "foo", "bar");
mysql_select_db("stuff", $link);
$result = mysql_query("SELECT * FROM table", $link) or die("Error");
$data = array();
while ($row = mysql_fetch_array($result))
$data[] = $row;
$filtered_data = array_filt
I think this can be done with mySQL (if you're using it) log-files.
Niklas
-Original Message-
From: George Pitcher [mailto:[EMAIL PROTECTED]
Sent: 26. helmikuuta 2003 11:02
To: [EMAIL PROTECTED]
Subject: [PHP] header and writing problem
Hi all,
Back on the list after a long
No, he doesn't mean that.
You are doing:
$String = "text " + "more text";
while you should be doing:
$String = "text " . "more text";
Niklas
-Original Message-
From: Luis A [mailto:[EMAIL PROTECTED]
Sent: 26. helmikuuta 2
Well, you could use temporary files for this. I've never done this by
myself, but I think it's worth giving a try. :)
Fetch the data from the database, write your code to temporary file and then
include this temporary file. After that you can destroy the temporary file.
Niklas
---
Seems that php does not have write access to that directory. Set it right
and it should work.
Niklas
P.S. Tip: It's much quicker to create plain html without echo. Just do it
like
, not like
"; ?> :)
-Original Message-
From: Frans Bakker [mailto:[EMAIL PROTECT
On linux you can do it in shell with chmod command. Do 'chmod 766 direcory'.
You can find out more about chmod-command at
http://www.die.net/doc/linux/man/man1/chmod.1.html.
Niklas
-Original Message-
From: Frans Bakker [mailto:[EMAIL PROTECTED]
Sent: 27. helmikuuta 200
You get a file to an array of lines with file().
Example:
"row 1";
// [1] => "row 2";
// [2] => "row 3";
// .
for ($i = 0; $i < count($myFile); $i++)
{
print "Row ".($i+1).": ".$myFile[$i];
};
?>
Niklas
-Original
1) No you can't. Use javascript for that.
2) This information is easy to find from web. Read datasheets or use google.
Niklas
-Original Message-
From: yogendra lingsugur [mailto:[EMAIL PROTECTED]
Sent: 3. maaliskuuta 2003 14:32
To: [EMAIL PROTECTED]
Subject: [PHP] info require
I think that file_get_contents() is quicker, since include() runs what it
gets as normal php code. And that gives you the answer to the other question
as well. :)
Niklas
-Original Message-
From: Patrick Teague [mailto:[EMAIL PROTECTED]
Sent: 4. maaliskuuta 2003 10:57
To: [EMAIL
That should be done like
$inputresult = str_replace("\n", "¶\n", $testtextarea);
unless he really wants to output \n, not line change.
outputs:
this is
two lines
outputs:
this is\ntwo $foo
String in enclosed by ' is exact, unlike ".
Niklas
-Original
print htmlspecialchars("[EMAIL PROTECTED]@#%:[EMAIL PROTECTED]@[EMAIL
PROTECTED]|#:~December,
2003~on~fjskl");
Niklas
-Original Message-
From: Liam Gibbs [mailto:[EMAIL PROTECTED]
Sent: 7. maaliskuuta 2003 8:13
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Dollar signs in values
True. My bad. :)
You really have to use single quotes, not double quotes. And I was the one
telling about this a couple of days a go. :)
Niklas
-Original Message-
From: Jason k Larson [mailto:[EMAIL PROTECTED]
Sent: 7. maaliskuuta 2003 8:58
To: [EMAIL PROTECTED]
Cc: Php-General
My short answer: set_time_limit();
Niklas
-Original Message-
From: Andras Kende [mailto:[EMAIL PROTECTED]
Sent: 7. maaliskuuta 2003 9:05
To: 'php list'
Subject: [PHP] Maximum execution time exceeded when using dial up
Hello,
I have database while query which populates
Dolphins are gone. ;)
Here is your direction: preg_match(). If you need help with it (it can be
compicated at first), ask. :)
Niklas
-Original Message-
From: Chris Blake [mailto:[EMAIL PROTECTED]
Sent: 7. maaliskuuta 2003 11:16
To: [EMAIL PROTECTED]
Subject: [PHP] Search for keyword
You might want to use preg_match_all(). Here's a sample of getting whole row
with a specified word in it:
Niklas
-Original Message-
From: Chris Blake [mailto:[EMAIL PROTECTED]
Sent: 7. maaliskuuta 2003 12:36
To: Php-General
Subject: RE: [PHP] Search for keyword in txt file
O
If you want to validate form data before sending it, javascript is the
choise.
Niklas
-Original Message-
From: Liam Gibbs [mailto:[EMAIL PROTECTED]
Sent: 7. maaliskuuta 2003 15:44
To: php list
Subject: Re: [PHP] javascript
> in my php script registration1.php, i have writ
with form data
Ofcourse this does not apply to every form, but basicly this is how it goes.
Niklas
-Original Message-
From: Liam Gibbs [mailto:[EMAIL PROTECTED]
Sent: 7. maaliskuuta 2003 15:55
To: php list
Subject: Re: [PHP] javascript
> If you want to validate form data before se
Use preg_match_all();
Something like preg_match_all("/(\(<\?.*\?>)/im", $Text, $Array_PHP_Code,
PREG_PATTERN_ORDER); should do it. It might need some work, but you'll get
it. :)
Niklas
-Original Message-
From: Alejandro [mailto:[EMAIL PROTECTED]
Sent: 11. maal
$FourteenDays = 86400 * 14;
$var = $FourteenDays - (strtotime($date2) - strtotime($date1));
Now if $var is > 0, 14 days has not passed.
Niklas
-Original Message-
From: Fredrik [mailto:[EMAIL PROTECTED]
Sent: 12. maaliskuuta 2003 12:06
To: [EMAIL PROTECTED]
Subject: [PHP] date ch
Possibly the db-server is accepting only localhost connections.
Niklas
-Original Message-
From: Patrick LOK [mailto:[EMAIL PROTECTED]
Sent: 12. maaliskuuta 2003 14:39
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: [PHP] Re: [PHP-DB] How to Connect remote DB server?
There is no
You said before you got a odbc connection to your remote db = remote
connections are possible.
The problem is in:
a) db configuration
b) your way of trying to connect to db
c) your firewall
d) remote firewall
e) all above
Niklas
-Original Message-
From: Patrick LOK [mailto:[EMAIL
LOL! :D
-Original Message-
From: Rudolf Visagie [mailto:[EMAIL PROTECTED]
Sent: 13. maaliskuuta 2003 10:56
To: [EMAIL PROTECTED]
Subject: RE: [PHP] Re: Your script possibly relies on a session side-effect
which existed until PHP 4.2.3
I would have thought a genius would be able to spell
You cannot output anything before headers.
Niklas
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 14. maaliskuuta 2003 8:03
To: [EMAIL PROTECTED]
Subject: [PHP] Can't relocate to a specified URL after submit.
The code looks like:
if( $actionflag == &q
What are you trying to get out of that mess? What should the output look
like?
Niklas
-Original Message-
From: Dennis Gearon [mailto:[EMAIL PROTECTED]
Sent: 14. maaliskuuta 2003 7:51
To: [EMAIL PROTECTED]
Subject: [PHP] can't get any string replacements to clean this
All i ge
There is many functions that can do it.
str_replace() is the fastest on thisone. preg_match() comes on second
position, and after that comes ereg_replace().
But if you need to do harder replacing, preg_match() is the one to use, imo.
Niklas
-Original Message-
From: Awlad Hussain
. :)
Niklas
-Original Message-
From: Philip J. Newman [mailto:[EMAIL PROTECTED]
Sent: 28. maaliskuuta 2003 10:17
To: Dan Rossi; Leif K-Brooks
Cc: Peter Houchin; Dan; php-general
Subject: Re: [PHP] Re: Internet Explorer toolbar
Mummy and Daddy sto fighting.
- Original Message -
From
I think you should use the function called
PutMoneyToMyAccount($AccountID = '123456-98765', $AmountInUSDollars =
'100');. Run it as many times as you want. This doesn't need
javascript, so this wasn't OT.. :P No need to thank me, even manual
tells you this.
You might want to start with searching the manual for opendir()
function. There is a sample code listing all files from a directory. :)
Niklas
-Original Message-
From: Ben Whitehead [mailto:[EMAIL PROTECTED]
Sent: 2. huhtikuuta 2003 1:05
To: [EMAIL PROTECTED]
Subject: [PHP] Menu from
Check if file exists with file_exists().
Niklas
-Original Message-
From: Diana Castillo [mailto:[EMAIL PROTECTED]
Sent: 3. huhtikuuta 2003 11:42
To: [EMAIL PROTECTED]
Subject: [PHP] @getimagesize
even though I use a @getimagesize , I still get the following Warning
when the image is
creating error as well. Remember to close the file right away, if
you use that! :)
Niklas
-Original Message-
From: Diana Castillo [mailto:[EMAIL PROTECTED]
Sent: 3. huhtikuuta 2003 13:42
To: [EMAIL PROTECTED]
Subject: Re: [PHP] @getimagesize
according to the documentation on php.net , Th
He needs both. /s makes dot to include new lines too, so you're right.
Niklas
-Original Message-
From: Tom Rogers [mailto:[EMAIL PROTECTED]
Sent: 3. huhtikuuta 2003 16:26
To: Thomas Johnsson
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] preg_match_all()
Hi,
Thursday, April 3, 200
No.
Niklas
-Original Message-
From: Deependra b. Tandukar [mailto:[EMAIL PROTECTED]
Sent: 4. huhtikuuta 2003 12:45
To: Justin French; Diana Castillo; [EMAIL PROTECTED]
Subject: [PHP] window size...
Hi,
Is there anyway to define a fixed window size using PHP as we do with
.so into server:
/usr/libexec/libphp4.so: undefined symbol: ap_block_alarms
Anyone got any idea on this?
Kind regards
Niklas Janzon
\
--with-pear=/var/devel \
--enable-sockets \
--with-soap
--
Best Regards
Niklas Fondberg - [EMAIL PROTECTED]
System Developer - I3 Micro Technology
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Yeah, we'd be happy to develope such program for you. Is there something
else you need, cash? :))))
Niklas
-Original Message-
From: millw0rm [mailto:[EMAIL PROTECTED]]
Sent: 6. kesäkuuta 2002 9:05
To: [EMAIL PROTECTED]
Subject: [PHP] phpSearch
Hi, I m looking
1. Cookies _has_ to be sent before anything else, that just is the case.
2. Sessions are the answer for thisone.
Niklas
-Original Message-
From: Dib, Walid (MED, Stagiaire GEMS) [mailto:[EMAIL PROTECTED]]
Sent: 6. kesäkuuta 2002 10:06
To: '[EMAIL PROTECTED]'
Subject: [PHP-D
o with the values sent from that form.
If you need a tutorial, try searching google with "php tutorial".. :)
Niklas
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 12. kesäkuuta 2002 10:17
To: [EMAIL PROTECTED]
Subject: [PHP] tutorials
hi
i wa
p?pos=
And keep some log on sending. Even simple text file will do, if you are
sending mails in some known order. Log file is very handy if cpu
crashes, or something else happens.
Niklas
-Original Message-
From: Justin French [mailto:[EMAIL PROTECTED]]
Sent: 12. kesäkuuta 2002 14:45
To
That's how I do it when I need to handle the data and return user to the
same page.
Use header("Location: blah"); in the end of the handler page. Then even
'back'-button won't take user back to the handler page, and refresh
won't send data again.
Nikl
If you still have an error there, change
if ($num_results = 0)
to
if ($num_results == 0)
See the difference? Realize the error?
Niklas
-Original Message-
From: Roberts, Mark [mailto:[EMAIL PROTECTED]]
Sent: 12. kesäkuuta 2002 16:20
To: [EMAIL PROTECTED]
Subject: [PHP] Else/For loop
Embedding PHP in HTML, since I think HTML is ignored by php, just passed
thru.
Niklas
-Original Message-
From: Philipp Melab [mailto:[EMAIL PROTECTED]]
Sent: 13. kesäkuuta 2002 14:55
To: [EMAIL PROTECTED]
Subject: [PHP] php-speed
I have a simple newbie question...
Whats better
d
now? ;)
Btw. everyone else, check that link below too, if this issue is in your
interest.
Niklas
-Original Message-
From: Pradeep Dsouza [mailto:[EMAIL PROTECTED]]
Sent: 13. kesäkuuta 2002 15:21
To: [EMAIL PROTECTED]
Subject: Re: [PHP] php-speed
See this
And maybe you might change
I don't think so. The difference is (IMHO + the article linked below) if
you use
...Foo... (faster)
or
Foo..."; ?> (slower)
Niklas
-Original Message-
From: Brian McGarvie [mailto:[EMAIL PROTECTED]]
Sent: 13. kesäkuuta 2002 15:29
To: [EMAIL PROTECTED]
Cc: Php-Genera
Try
$query = "select count(*) as Lines from users where "
and then check the value of Lines. Or then do something like
$query = "select ID from users where "
and now your mysql_num_rows($result) should return right kinda value.
Niklas
-
Use ODBC.
Niklas
-Original Message-
From: sonjaya [mailto:[EMAIL PROTECTED]]
Sent: 19. kesäkuuta 2002 7:57
To: [EMAIL PROTECTED]
Subject: [PHP] open database paradox
i want to open and read database in paradox , how
###
This message has
for ($i = 200; $i <= 200; $i++)
print "$i ";
Niklas
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 25. kesäkuuta 2002 10:05
To: [EMAIL PROTECTED]
Subject: [PHP] looping through numbers
Hello ,
How do I do a loop that will increase
it should ofcourse be
for ($i = 200; $i <= 250; $i++)
print "$i ";
:)
-Original Message-
From: Niklas Lampén [mailto:[EMAIL PROTECTED]]
Sent: 25. kesäkuuta 2002 10:05
To: Php-General
Subject: RE: [PHP] looping through numbers
for ($i = 200; $i <= 200; $i+
Shorter version would be
And this is not bad coding, it is actually faster than echoing
everything. We had this conversation maybe a week ago, so let's not
start it again. :)
Niklas
-Original Message-
From: Craig [mailto:[EMAIL PROTECTED]]
Sent: 25. kesäkuuta 2002 10:
Not true. :)
You can do it like this: (Ok, this is a for loop, but idea is the same)
mailto:[EMAIL PROTECTED]]
Sent: 25. kesäkuuta 2002 10:56
To: [EMAIL PROTECTED]
Subject: Re: [PHP] function echo ' '
But the problem is that Im doin it inside a while loop. So I need to
echo it. /m
Try this:
Niklas
-Original Message-
From: Andy Whittlestone [mailto:[EMAIL PROTECTED]]
Sent: 26. kesäkuuta 2002 15:37
To: [EMAIL PROTECTED]
Subject: [PHP] Require()
I want to use require to send some post information to a page.
Code:
if ($viewsystem = = 1)
$Str
If your list looks like this:
"
Salo, Mika
Räikkönen, Kimi
Häkkinen, Mika
"
And there is no other commas in the list, you can do it something like
this:
I think that'll do. I didn't test it thou.. :)
Niklas
-Original Message-
From: Jason Soza [mailto:[EMAIL P
If you check the source of your code you'll see that in source the text
is in two lines.
\n doesn't work as , so this is about how HTML works, not plain
text.
Niklas
-Original Message-
From: KK Lee [mailto:[EMAIL PROTECTED]]
Sent: 22. heinäkuuta 2002 14:01
To: [EMAIL
it runs as user "www" and group "www" rather than the user and group I set
with SuexecUserGroup. Why is that, and how can I make it use the user and
group the user belongs to? People are starting to complain that they have
problems using fopen() and the like.
Cheers
Niklas
;t
help either. Now, this is really strange. PNG has transparency, and the loaded
image does. Why doesn't ImagePng output the transparancy right?
Cheers
Niklas Saers
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands
PT_MD5;' returns 1
'echo CRYPT_BLOWFISH;'returns 0
so i will asume, that MD5 is available on my system. But
'echo CRYPT_SALT_LENGTH;' returns 2
and if i test 'crypt('test')'
the string is only encrypted with DES.
Anybody had similar
?
I use PHP 4.0.4pl1 and md5 support is definitively available.
Btw.
> $1$rZelmysN$Gj0rbqD76STIotGExxpna1
>
> SALT
Isn't this just a 8 chars SALT (rZelmysN)?
Best regards
Niklas Neumann
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL
d5 exists on your system. PHP will
then generate randomly a md5-salt.'. A bit mistakable I think.
I'll give the translator a wink.
Thanks again and best regards
Niklas Neumann
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional comma
l addresses.
Niklas Neumann
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
> What's the best (secure?) way of transmitting sensitive information
> over email?
Leave the messages on the server and get them via pop3s. Outlook is capable
of pop3 via ssl.
Best regards
Niklas Neumann
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-m
To test your PHP scripts you do need a server with PHP. It's very easy
to setup one on to you local machine + there is many completely free
ones.
Niklas
-Original Message-
From: Fady Fouad Shehata [mailto:[EMAIL PROTECTED]]
Sent: 31. joulukuuta 2001 4:34
To: [EMAIL PROT
Yep, but you can't do much without testing your scripts.
Niklas
-Original Message-
From: Martin Schichl [mailto:[EMAIL PROTECTED]]
Sent: 2. tammikuuta 2002 13:37
To: [EMAIL PROTECTED]; Php-General
Subject: RE: [PHP] php newbie
To design, you just need a text editor (or html e
I think this is what you want to do:
mailto:[EMAIL PROTECTED]]
Sent: 9. tammikuuta 2002 8:59
To: 'Php-General-List (E-mail)'
Subject: [PHP] foreach statement
Okay lets see who has there thinking caps on today (cos I really dont)
I have a list of email addresses stored in a text file.
I am a
ess = $emails[$i];
// Do anything you want with $this_is_one_address
};
I suggest that you use the for-loop if $emails array is big. Takes less
memory.
Niklas
-Original Message-
From: Chris Grigor [mailto:[EMAIL PROTECTED]]
Sent: 9. tammikuuta 2002 9:44
To: '[EMAIL PROTECTE
You're welcome. :)
Niklas
P.S. I know... ;)
-Original Message-
From: Chris Grigor [mailto:[EMAIL PROTECTED]]
Sent: 9. tammikuuta 2002 10:23
To: '[EMAIL PROTECTED]'; Php-General
Subject: RE: [PHP] foreach statement
Thanks!! its working !!!
***BIG SMILE
Nik
This is because it creates a new "thread", atleast I think it so. Use
global variables to prevent this from happening:
i = 0;
function change_check_all(tree_item) {
a = document.all[tree_item + "_check"];
b = document.all[tree_item + "_count"];
// changed the line below
for(i
You should use preg_match_all() for this.
Something like this should do (didn't try it thou):
preg_match_all("|(.*)\">|U", $lineofhtml,
$output, PREG_PATTERN_ORDER);
Niklas
-Original Message-
From: Kunal Jhunjhunwala [mailto:[EMAIL PROTECTED]]
Sent: 11. tammi
es up. location.href will take you where you want.
Niklas
-Original Message-
From: Simos Varelakis [mailto:[EMAIL PROTECTED]]
Sent: 17. tammikuuta 2002 14:37
To: [EMAIL PROTECTED]
Subject: [PHP] Display a mesagge and redirect (newbie)
Hi to everyone
I want to do the following
No good, since starts counting when page is first opened, so
clients with slow connection might not never see the message. I'd rather
use
which will execute right after the page is completely loaded and move to
the next page after 5 seconds.
Niklas
-Original Message-
From: Int
seconds even if page is not loaded completely but
the javascript code will wait 'till the page is loaded. Everyone will
see the whole page. And you can allways add an extra link for those who
do not want to wait (or have javascript disabled).
Niklas
-Original Message-
From: Intruder [m
If you have ID that is a incrementing number, you could just query like
this:
'SELECT ID FROM MY_TABLE ORDER BY ID DESC, LIMIT 1'
And there you have just one result, the last (biggest) ID number.
Niklas
-Original Message-
From: hugh danaher [mailto:[EMAIL PROTECTED]]
You're welcome.
Heh, why to make too hard. :)
Niklas
-Original Message-
From: hugh danaher [mailto:[EMAIL PROTECTED]]
Sent: 18. tammikuuta 2002 8:40
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Getting the last record in a mysql table
Niklas,
Now that sounds like a solution!
T
Well, ofcourse you have to have the table + field names right. ;)
Niklas
-Original Message-
From: hugh danaher [mailto:[EMAIL PROTECTED]]
Sent: 18. tammikuuta 2002 9:38
To: [EMAIL PROTECTED]
Cc: Php-General
Subject: Re: [PHP] Getting the last record in a mysql table FINALLY
fwrite()?
Niklas
-Original Message-
From: Harphajan Singh [mailto:[EMAIL PROTECTED]]
Sent: 22. tammikuuta 2002 9:51
To: [EMAIL PROTECTED]
Subject: [PHP] Writing to text file from Radio Buttons
Greeting dudes ! I`m a fresh user of PHP and need some technical
assistance from you folks
If I understood you correct, you want to know the amount of the rows in
your table.
Here you go (Assuming ID is the field you use to ident your rows):
"...count(ID) AS CountValue..."
then treat CountValue as any field in a table.
Niklas
-Original Message-
From: Mason Batl
I think it won't work.
If you don't want to trim the actual variable, but check if the trimmed
variable is longer than 50 chars, here you go:
if (strlen(trim($cust_adres)) > 50)
{
....
}
Niklas
-Original Message-
From: B. Verbeek [mailto:[EMAIL PROTECTE
Then why don't you just trim() it before comparing?
$var = trim($var);
Niklas
-Original Message-
From: B. Verbeek [mailto:[EMAIL PROTECTED]]
Sent: 31. tammikuuta 2002 13:33
To: [EMAIL PROTECTED]
Subject: RE: [PHP] question reg trim-strlen
I want to trim it then check and th
You could do it like this:
";
};
?>
Niklas
-Original Message-
From: John Gurley [mailto:[EMAIL PROTECTED]]
Sent: 31. tammikuuta 2002 15:32
To: [EMAIL PROTECTED]
Subject: [PHP] using eregi
Hello,
Just wondering if there is a way to print out parts of a text file (i.e
from
l
eval() is your solution.
for ($i = 1; $i <= $NMax; $i++)
{
$variable = "\$Check$i";
eval("\$string = \"$variable\";");
echo $string."";
}
Niklas
-Original Message-
From: jtjohnston [mailto:[EMAIL PROTECTED]]
Sent: 1
You're wrong here, my friend. You can have any value you like.
value="@£$ASDFSDF ASDP fosifu @}{$#%/&@ " would work.
Niklas
-Original Message-
From: hugh danaher [mailto:[EMAIL PROTECTED]]
Sent: 1. helmikuuta 2002 10:48
To: Luke Welling
Cc: Php-General
Su
Well, Netscape breaks value="This is" to "This", but IE understands that
as "This%20is". so if you set the value to be "This%20is", both Netscape
and IE understands that as "This is". There are many other chars that
can f**k up the value, s
There can't be _anything_ before headers. Even a single space and/or
linebreak causes an error.
Niklas
-Original Message-
From: Peter Ruan [mailto:[EMAIL PROTECTED]]
Sent: 5. helmikuuta 2002 7:42
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP] Problem...header al
It should be $category[0] = $glacier;
^--- ERROR in you code
Niklas
-Original Message-
From: Andy [mailto:[EMAIL PROTECTED]]
Sent: 5. helmikuuta 2002 11:59
To: [EMAIL PROTECTED]
Subject: [PHP] Tricky array question
Hi there,
I have a tricky array
I think you should ignore that. I use it all the times, and it works
fine.
Niklas
-Original Message-
From: Andy [mailto:[EMAIL PROTECTED]]
Sent: 5. helmikuuta 2002 12:37
To: [EMAIL PROTECTED]
Subject: [PHP] Re: Tricky array question
Hello Rainer,
what kind of disadvantages do I
Ahem... So you want to have a two dimensional variable?
";
?>
Is this what you are looking for?
Niklas
-Original Message-
From: Andy [mailto:[EMAIL PROTECTED]]
Sent: 5. helmikuuta 2002 12:54
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Tricky array question
This was just an
There is no way. How would you then know if the checkbox was checked or
not?
I use 'em like this
and then check if $private is "myValue" or not.
If you really have to get some data thru, use hidden inputs.
Niklas
-Original Message-
From: Gaylen Fraley [mailto:[
Firstly:
Keep track very carefully to whom you've allready sent the message, it
might allways crash.
Second:
Add some Sleep()'s so it won't kill your mailserver.
Third:
Don't spam. :)
Niklas
-Original Message-
From: phantom [mailto:[EMAIL PROTECTED]]
Sent: 14.
Maybe you can round the problem with
if ($num < 1)
echo "Nothing today!";
else
echo "Something to do today!";
if (!isset($num) || $num == 0)...
Niklas
-Original Message-
From: Frank Miller [mailto:[EMAIL PROTECTED]]
Sent: 18. helmikuut
date() is your answer, use it in the piece of code generating the query.
$DateTime = date("Y-m-d H:i:s); // "2002-02-18 16:10:43"
Niklas
-Original Message-
From: eoghan [mailto:[EMAIL PROTECTED]]
Sent: 18. helmikuuta 2002 16:14
To: [EMAIL PROTECTED]
Subject: [PH
Do everything as you did, except for that if-statement.
$Query = "SELECT * FROM table";
$Results = mysql_query($Query);
$num = mysql_num_rows($Results);
if ($num < 1 || !isset($num))
echo "Nothing here!";
else
echo "Do something today!";
Niklas
I had this problem while running PHP under windows. I solved (well,
rounded :) the problem with $SCRIPT_NAME (if I remember it right) which
gives the very same result.
Niklas
-Original Message-
From: Greg Donald [mailto:[EMAIL PROTECTED]]
Sent: 19. helmikuuta 2002 8:05
To: [EMAIL
array_rand() might be the solution for you.
Niklas
-Original Message-
From: andy [mailto:[EMAIL PROTECTED]]
Sent: 7. toukokuuta 2002 16:12
To: [EMAIL PROTECTED]
Subject: [PHP] how to generate a date between 1998 and today by random?
hi there,
I am wondering if there is an easy way
The platform doesn't matter here, since VarChar's maximum length is 255
chars, so everything above that is cutted away on insert.
Creating table with VarChar(800) should give an error..
Niklas
-Original Message-
From: Michael Sims [mailto:[EMAIL PROTECTED]]
Sent: 13. touko
Oh, it's different in msSQL. My mistake, sorry.. :)
My knowledge is based on mySQL, I thought that the field lengths were in
some sorta standard.
Niklas
-Original Message-
From: Sqlcoders.com Programming Dept [mailto:[EMAIL PROTECTED]]
Sent: 14. toukokuuta 2002 1:46
To: [
That is what I said before..
So can varchar be longer than 255 chars in MSSQL (or in any SQL)?
Actually this is not my problem, I'm doing well with mySQL (varchars
maximum length 255 :), but I'm getting interested here!
Niklas
-Original Message-
From: Matt Friedman [mai
Well, you could produce those randomly. Store all the PINs to a database
and before storing compare that it doesn't exist yet. Here is a piece of
code to produce PINs in _exactly_ that format you want. I've done it for
myself, but feel free to use it in any way you like:
mysql_query("delete from conf_event where time < ( time() );
You're missing the ending " there.
Niklas
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 29. toukokuuta 2002 16:20
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Parse Error(ne
eregi_replace("o$", "", $String);
Niklas
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 30. toukokuuta 2002 13:05
To: [EMAIL PROTECTED]
Subject: RE: [PHP] How can I remove the last character from a one line
file?
Hi all,
T
// You could use foreach() here as well
Niklas
-Original Message-
From: jtjohnston [mailto:[EMAIL PROTECTED]]
Sent: 22. helmikuuta 2002 8:48
To: [EMAIL PROTECTED]
Subject: [PHP] foreach not in reach
Question 1:
How can I append strings to my authors array?
Me thinks this doesn't
If $submit is 0/NULL/FALSE and you do "if ($submit)" you'll receive
FALSE.
With "if (isset($submit))" you'll receive TRUE.
In other words, isset() checks if variable is set at all and is() checks
if the expression is true.
Niklas
-Original Message-
F
Problem with this is that if user clicks Back button in browser, only
"second_frame" will go -1 in history. Better solution would be making
the pages creating frames to get variables for frames, so you could send
variables with page names to it.
>
Niklas
-Original Message---
1 - 100 of 203 matches
Mail list logo