Maximum hardware limits for the latest IBM: AIX server? Any keyword I have to use in google? I already tried 'maximum', 'limits', etc.
It's for a comparative OS comparison I'm making.
TIA
Maximum hardware limits for the latest HP-UX server? Any keyword I have to use in google? I already tried 'maximum', 'limits', etc.
It's for a comparative OS comparison I'm making.
TIA
Maximum hardware limits for the latest solaris enterprise server? Any keyword I have to use in google? I already tried 'maximum', 'limits', etc.
It's for a comparative OS comparison I'm making.
TIA
Yes i did go to the link you posted. I did read it, but it was just that I didn't look deep enough. Ok... so far so good I got the correct working example;
<?php
$a = 1;
$b = 2;
function Sum()
{
global $a, $b;
$b = 132;
echo "orig: $b <br>";
}
Sum();
function Go(){
global $b...
thanks guys, but that still isn't the one I was looking for. Its a little more advanced than your regular visited and unvisited links. Because unlike your regular visited links, once you clean out your cache every link is going to go back to unvisited state. Whilst this one doesn't.
mysql_query("UPDATE tblrepair SET ( mgt_id,rep_status,rep_notes) VALUES('$mgtid','$decision','$comments') WHERE rep_id='$rid'") or die ("Error in registration sql:" . mysql_error());
I always get a You have an error in your SQL syntax; check the...
the 1st time it read was inside a function. <<--- it exists in this one. I can print it out.
then the 2nd time i wanted to read it was in another function but it just wont show up.
well at the top there exists;
$cookie_read = explode("|", base64_decode($user));
// define variables to hold cookie values.
$userid = $cookie_read[0];
and then further down (in another function) I want to get the exact same data so I try to use the same codes again but it wont work. I try...
.. and then once it has been opened it is no longer highlighted? you know; like in our email inboxes when someone sends us a new unread email.
So basicly, I'd just have to send a query into the database, collect all the rows, order them by date (desc) so I'd have the latest row entred at the...
weee thanks guys! finally got it working :D
here are my codes:
if ($_FILES) {
$userfile = addslashes (fread (fopen ($_FILES["userfile"]["tmp_name"], "r"), filesize ($_FILES["userfile"]["tmp_name"])));
$file_name = $_FILES["userfile"]["name"];
$file_type = $_FILES["userfile"]["type"]...
heres the code I followed from spoono.com in uploading all image files in a certain directory into rows in mysql:
while ($file = readdir($dir_handle)) {
$filetyp = substr($file, -3);
if ($filetyp == 'gif' OR $filetyp == 'jpg') {
$handle = fopen($file,'r');
$file_content =...
is it possible to pass 2 values in a option/select/check box?
here is my current script:
<input name=\"planyr\" type=\"radio\" value=\"$one\" checked=\"checked\" />1 Year Extended Warranty Plan (<strong>$one dollars</strong>)
well it gets data from a row which has prices for 1, 2 and 3 years...
well; lemme give a visual example;
http://img126.imageshack.us/img126/5679/howtodo6to.gif
There will be 2 forms; one for the set A and another for set B.
depending on wheter option box A is selected, all the input check boxes/submit button in set B is disabled and vice versa.
the option...
been fiddling with this for the past 2 hrs;
while($row = mysql_fetch_array($sql)){
$userid = $row['ws_id'];
$username = $row['ws_username'];
$password = $row['ws_password'];
$ipaddress = $row['ws_ipaddress'];
}
how do I insert a variable in the field names of the tables I want to get data...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.