Jump to content

RobLamb

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Everything posted by RobLamb

  1. sorry, here we go.... SELECT SUM(points_allocated) AS total FROM tbl_points WHERE member_id = %s Cant be more simple than that surely!
  2. Hi I have a recordset from a database which outputs a value of '% THOBEKA MFEKA::12110235675?' I need to seach the database based on the number between the :: and ? only. So for example '12110235675'. I have tried this with a sql statement using LIKE but its not working. How can I trim the value from the database so I only get the number out. The amount of characters before the :: can vary. Please can someone give me some advice asap. Rob
  3. Thanks bbaker! A lot of time that wasted for me!!!!!! THANKS!
  4. Hi Ravi I do this on the page before. session_start(); set all my session variables run some scripting (use the 2 I need to run one set of script commands here) redirerct to next page variables then come out empty
  5. Hi Everyone I am having a problem with some session variables. Basically I am setting them based on fields in a form, then I need to use them for an update query in another page. If I view all the variables set, I can see them, but they are not coming through in my code where I need them. Print out of page where I am checking them. (The two i need are frPrefixTwo and frNoTwo) Please help urgent;y on this guys!! I am really stuck. ses1: ses2: SELECT stockId FROM tblstock WHERE stockEnginePrefix = '' AND stockFrameNo = '' Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\clubYamaha2\step5mark.php:36) in C:\xampp\htdocs\clubYamaha2\step5mark.php on line 45 Array ( [KT_lastsiteroot] => 93bf5b3b77be8647f2b4b5e7332e7273 [frPrefix] => 3gx [frNo] => 110194 [title] => Mr [firstName] => a [surname] => b [TelHome] => [TelWork] => [TelCell] => [iDNo] => 730710524869 [frPrefixTwo] => 3gx [frNoTwo] => 110194 [yamType] => 3 [yamUse] => 17 [yamReg] => [yamPurch] => 1 [stockId] => ) <code> $colname_rsStockId = $_SESSION['frPrefixTwo']; $col2_rsStockId = $_SESSION['frNoTwo']; echo "ses1: ".$_SESSION['frPrefixTwo']."<br/>"; echo "ses2: ".$col2_rsStockId."<br/>"; mysql_select_db($database_conYamaha, $conYamaha); $query_rsStockId = sprintf("SELECT stockId FROM tblstock WHERE stockEnginePrefix = '".$colname_rsStockId."' AND stockFrameNo = '".$col2_rsStockId."'"); echo $query_rsStockId; $rsStockId = mysql_query($query_rsStockId, $conYamaha) or die(mysql_error()); $row_rsStockId = mysql_fetch_assoc($rsStockId); $totalRows_rsStockId = mysql_num_rows($rsStockId); session_start(); $_SESSION['stockId'] = $row_rsStockId['stockId']; session_start(); Print_r ($_SESSION); </code>
  6. anyone have some advice here for me?
  7. Sorry about that Maq! Thanks for the heads up though! The question is... in the class.php file, I am not managing to add the user to the tbl_user table! I need some advice on my code here!
  8. <? class EMAIL_TO_DB { var $IMAP_host; #pop3 server var $IMAP_port; #pop3 server port var $IMAP_login; var $IMAP_pass; var $link; var $error = array(); var $status; var $max_headers = 'max'; #How much headers you want to retrive 'max' = all headers ( var $filestore; var $file_path = 'c:/xampp/htdocs/gym/mos/'; #Where to write file attachments to /var/www/files/email/ # win: c://wamp//www//emailtodb//files// #[full/path/to/attachment/store/(chmod777)] var $partsarray = array(); var $msgid =1; var $newid; var $newUser; var $logid; var $this_file_name = 'example_1.php'; #If mode "html" var $mode = 'html'; #If script run from cron "mode" = "cron" or ""; mode "html" is using if You run script from browser var $spam_folder = 1; #Folder where moving spam (ID from DB) var $file = array(); #File in multimart message function connect($host, $port, $login, $pass){ $this->IMAP_host = $host; $this->IMAP_login = $login; $this->link = imap_open("{". $host . $port."}INBOX", $login, $pass); if($this->link) { $this->status = 'Connected'; } else { $this->error[] = imap_last_error(); $this->status = 'Not connected'; } } function set_path(){ #If You need set here more parameters # - recognise operating systems, or something $path = $this->file_path; return $path; } function set_filestore(){ //$dir = $this->dir_name(); $path = $this->set_path(); //$this->filestore = $path.$dir; $this->filestore = $path; } /** * Get mailbox info */ function mailboxmsginfo(){ //$mailbox = imap_mailboxmsginfo($this->link); #It's wery slow $mailbox = imap_check($this->link); if ($mailbox) { $mbox["Date"] = $mailbox->Date; $mbox["Driver"] = $mailbox->Driver; $mbox["Mailbox"] = $mailbox->Mailbox; $mbox["Messages"]= $this->num_message(); $mbox["Recent"] = $this->num_recent(); $mbox["Unread"] = $mailbox->Unread; $mbox["Deleted"] = $mailbox->Deleted; $mbox["Size"] = $mailbox->Size; } else { $this->error[] = imap_last_error(); } return $mbox; } /** * Number of Total Emails */ function num_message(){ return imap_num_msg($this->link); } /** * Number of Recent Emails */ function num_recent(){ return imap_num_recent($this->link); } /** * Type and subtype message */ function msg_type_subtype($_type){ if($_type > 0){ switch($_type){ case '0': $type = "text"; break; case '1': $type = "multipart"; break; case '2': $type = "message"; break; case '3': $type = "application"; break; case '4': $type = "audio"; break; case '5': $type = "image"; break; case '6': $type = "video"; break; case '7': $type = "other"; break; } } return $type; } /** * Flag message */ function email_flag(){ switch ($char) { case 'S': if (strtolower($flag) == '\\seen') { $msg->is_seen = true; } break; case 'A': if (strtolower($flag) == '\\answered') { $msg->is_answered = true; } break; case 'D': if (strtolower($flag) == '\\deleted') { $msg->is_deleted = true; } break; case 'F': if (strtolower($flag) == '\\flagged') { $msg->is_flagged = true; } break; case 'M': if (strtolower($flag) == '$mdnsent') { $msg->is_mdnsent = true; } break; default: break; } } /** * Parse e-mail structure */ function parsepart($p,$msgid,$i){ $part=imap_fetchbody($this->link,$msgid,$i); #Multipart if ($p->type!=0){ #if base64 if ($p->encoding==3)$part=base64_decode($part); #if quoted printable if ($p->encoding==4)$part=quoted_printable_decode($part); #If binary or 8bit -we no need to decode #body type (to do) switch($p->type) { case '5': # image $this->partsarray[$i][image] = array('filename'=>imag1,'string'=>$part, 'part_no'=>$i); break; } #Get attachment $filename=''; if (count($p->dparameters)>0){ foreach ($p->dparameters as $dparam){ if ((strtoupper($dparam->attribute)=='NAME') ||(strtoupper($dparam->attribute)=='FILENAME')) $filename=$dparam->value; } } #If no filename if ($filename==''){ if (count($p->parameters)>0){ foreach ($p->parameters as $param){ if ((strtoupper($param->attribute)=='NAME') ||(strtoupper($param->attribute)=='FILENAME')) $filename=$param->value; } } } if ($filename!='' ){ $this->partsarray[$i][attachment] = array('filename'=>$filename,'string'=>$part, 'encoding'=>$p->encoding, 'part_no'=>$i,'type'=>$p->type,'subtype'=>$p->subtype); } #end if type!=0 } #Text email else if($p->type==0){ #decode text #if QUOTED-PRINTABLE if ($p->encoding==4) $part=quoted_printable_decode($part); #if base_64 if ($p->encoding==3) $part=base64_decode($part); #if plain text if (strtoupper($p->subtype)=='PLAIN')1; #if HTML else if (strtoupper($p->subtype)=='HTML')1; $this->partsarray[$i][text] = array('type'=>$p->subtype,'string'=>$part); } #if subparts if (count($p->parts)>0){ foreach ($p->parts as $pno=>$parr){ $this->parsepart($parr,$this->msgid,($i.'.'.($pno+1))); } } return; } /** * All email headers */ function email_headers(){ #$headers=imap_headers($this->link); if($this->max_headers == 'max'){ $headers = imap_fetch_overview($this->link, "1:".$this->num_message(), 0); } else { $headers = imap_fetch_overview($this->link, "1:$this->max_headers", 0); } if($this->max_headers == 'max') { $num_headers = count($headers); } else { $count = count($headers); if($this->max_headers >= $count){ $num_headers = $count; } else { $num_headers = $this->max_headers; } } $size=sizeof($headers); for($i=1; $i<=$size; $i++){ $val=$headers[$i]; //while (list($key, $val) = each($headers)){ $subject_s = (empty($val->subject)) ? '[No subject]' : $val->subject; $lp = $lp +1; imap_setflag_full($this->link,imap_uid($this->link,$i),'\\SEEN',SE_UID); $header=imap_headerinfo($this->link, $i, 80,80); if($val->seen == "0" && $val->recent == "0") {echo '<b>'.$val->msgno . '-' . $subject_s . '-' . $val->from .'-'. $val->date."</b><br><hr>" ;} else {echo $val->msgno . '-' . $subject_s . '-' . $val->from .'-'. $val->date."<br><hr>" ;} } } /** * Get email */ function email_get(){ $email = array(); $this->set_filestore(); $header=imap_headerinfo($this->link, $this->msgid, 80,80); $from = $header->from; $udate= $header->udate; $to = $header->to; $size = $header->Size; if ($header->Unseen == "U" || $header->Recent == "N") { #Check is it multipart messsage $s = imap_fetchstructure($this->link,$this->msgid); if (count($s->parts)>0){ foreach ($s->parts as $partno=>$partarr){ #parse parts of email $this->parsepart($partarr,$this->msgid,$partno+1); } } else { #for not multipart messages #get body of message $text=imap_body($this->link,$this->msgid); #decode if quoted-printable if ($s->encoding==4) $text=quoted_printable_decode($text); if (strtoupper($s->subtype)=='PLAIN') $text=$text; if (strtoupper($s->subtype)=='HTML') $text=$text; $this->partsarray['not multipart'][text]=array('type'=>$s->subtype,'string'=>$text); } if(is_array($from)){ foreach ($from as $id => $object) { $fromname = $object->personal; $fromaddress = $object->mailbox . "@" . $object->host; } } if(is_array($to)){ foreach ($from as $id => $object) { $toaddress = $object->mailbox . "@" . $object->host; } } $email['CHARSET'] = $charset; $email['SUBJECT'] = $this->mimie_text_decode($header->Subject); $email['FROM_NAME'] = $this->mimie_text_decode($fromname); $email['FROM_EMAIL'] = $fromaddress; $email['TO_EMAIL'] = $toaddress; $email['DATE'] = date("Y-m-d H:i:s",strtotime($header->date)); $email['SIZE'] = $size; #SECTION - FLAGS $email['FLAG_RECENT'] = $header->Recent; $email['FLAG_UNSEEN'] = $header->Unseen; $email['FLAG_ANSWERED']= $header->Answered; $email['FLAG_DELETED'] = $header->Deleted; $email['FLAG_DRAFT'] = $header->Draft; $email['FLAG_FLAGGED'] = $header->Flagged; } return $email; } function mimie_text_decode($string){ $string = htmlspecialchars(chop($string)); $elements = imap_mime_header_decode($string); if(is_array($elements)){ for ($i=0; $i<count($elements); $i++) { $charset = $elements[$i]->charset; $txt .= $elements[$i]->text; } } else { $txt = $string; } if($txt == ''){ $txt = 'No_name'; } if($charset == 'us-ascii'){ //$txt = $this->charset_decode_us_ascii ($txt); } return $txt; } /** * Save messages on local disc */ function save_files($filename, $part){ $fp=fopen($this->filestore.$filename,"w+"); fwrite($fp,$part); fclose($fp); chown($this->filestore.$filename, 'apache'); } /** * Set flags */ function email_setflag(){ imap_setflag_full($this->link, "2,5","\\Seen \\Flagged"); } /** * Mark a message for deletion */ function email_delete(){ imap_delete($this->link, $this->msgid); } /** * Delete marked messages */ function email_expunge(){ imap_expunge($this->link); } /** * Close IMAP connection */ function close(){ imap_close($this->link); } function listmailbox(){ $list = imap_list($this->link, "{".$this->IMAP_host."}", "*"); if (is_array($list)) { return $list; } else { $this->error = "imap_list failed: " . imap_last_error() . "\n"; } return array(); } /******************************************************************************* * SPAM DETECTION ******************************************************************************/ function spam_detect(){ $email = array(); $id = $this->newid; #ID email in DB $execute = mysql_query("SELECT ID, IDEmail, EmailFrom, EmailFromP, EmailTo, Subject, Message, Message_html FROM emailtodb_email WHERE ID='".$id."'"); $row = mysql_fetch_array($execute); $ID = $row['ID']; $email['Email'] = $row['EmailFrom']; $email['Subject'] = $row['Subject']; $email['Text'] = $row['Message']; $email['Text_HTML'] = $row['Message_html']; if($this->check_blacklist($email['Email'])){ $this->update_folder($id, $this->spam_folder); } if($this->check_words($email['Subject'])){ $this->update_folder($id, $this->spam_folder); } if($this->check_words($email['Text'])){ $this->update_folder($id, $this->spam_folder); } if($this->check_words($email['Text_HTML'])){ $this->update_folder($id, $this->spam_folder); } } function check_blacklist($email){ #spam - emails $execute = mysql_query("SELECT Email FROM emailtodb_list WHERE Email='".addslashes($email)."' AND Type='B'"); $row = mysql_fetch_array($execute); $e_mail = $row['Email']; if($e_mail == $email){ return 1; } else { return 0; } } function check_words($string){ #spam - words $string = strtolower($string); $execute = mysql_query("SELECT Word FROM emailtodb_words "); while($row = mysql_fetch_array($execute)){ $word = strtolower($row['Word']); if (eregi($word, $string)) { return 1; } } } /******************************************************************************* * DB FUNCTIONS ******************************************************************************/ /*add to usertable and retrieve id*/ function db_add_user($newUserId){ $execute = mysql_query("INSERT INTO tbl_users (user_cell, user_active) VALUES ('".$email['FROM_EMAIL']."', '1',)"); $execute = mysql_query("select LAST_INSERT_ID() as NewUserId"); $row = mysql_fetch_array($execute); $this->newUserId = $row["UserId"]; //echo $this->newid2; } /* end add id to usertable*/ function db_add_message($email){ $execute = mysql_query("INSERT INTO emailtodb_email (IDEmail, EmailFrom, EmailFromP, EmailTo, DateE, DateDb, Subject, MsgSize, UserId) VALUES ('".$message_id."', '".$email['FROM_EMAIL']."', '".addslashes(strip_tags($email['FROM_NAME']))."', '".addslashes(strip_tags($email['TO_EMAIL']))."', '".$email['DATE']."', '".date("Y-m-d H:i:s")."', '".addslashes($email['SUBJECT'])."', '".$email["SIZE"]."', '".$this->newUserId."')"); $execute = mysql_query("select LAST_INSERT_ID() as UID"); $row = mysql_fetch_array($execute); $this->newid = $row["UID"]; } function db_add_attach($file_orig, $filename){ $execute = mysql_query("INSERT INTO emailtodb_attach (IDEmail, FileNameOrg, Filename) VALUES ('".$this->newid."', '".addslashes($file_orig)."', '".addslashes($filename)."')"); } /** * Add email to DB */ function db_update_message($msg, $type= 'PLAIN'){ if($type == 'PLAIN') $execute = mysql_query("UPDATE emailtodb_email SET Message='".addslashes($msg)."' WHERE ID= '".$this->newid."'"); if($type == 'HTML') $execute = mysql_query("UPDATE emailtodb_email SET Message_html='".addslashes($msg)."' WHERE ID= '".$this->newid."'"); } /** * Insert progress log */ function add_db_log($email, $info){ $execute = mysql_query("INSERT INTO emailtodb_log (IDemail, Email, Info, FSize, Date_start, Status) VALUES ('".$this->newid."', '".$email['FROM_EMAIL']."', '".addslashes(strip_tags($info))."', '".$email["SIZE"]."', '".date("Y-m-d H:i:s")."', '2')"); $execute = mysql_query("select LAST_INSERT_ID() as UID"); $row = mysql_fetch_array($execute); $this->logid = $row['UID']; return $this->logid; } /** * Set folder */ function update_folder($id, $folder){ $execute = mysql_query("UPDATE emailtodb_email SET Type = '".addslashes($folder)."' WHERE ID = '".$id."'"); } /** * Update progress log */ function update_db_log($info, $id){ $execute = mysql_query("UPDATE emailtodb_log SET Status = '1', Info='".addslashes(strip_tags($info))."', Date_finish = '".date("Y-m-d H:i:s")."' WHERE IDlog = '".$id."'"); } /** * Read log from DB */ function db_read_log(){ $email = array(); $execute = mysql_query("SELECT IDlog, IDemail, Email, Info, FSize, Date_start, Date_finish, Status FROM emailtodb_log ORDER BY Date_finish DESC LIMIT 100"); while($row = mysql_fetch_array($execute)){ $ID = $row['IDlog']; $email[$ID]['IDemail'] = $row['IDemail']; $email[$ID]['Email'] = $row['Email']; $email[$ID]['Info'] = $row['Info']; $email[$ID]['Size'] = $row['FSize']; $email[$ID]['Date_start'] = $row['Date_start']; $email[$ID]['Date_finish'] = $row['Date_finish']; } return $email; } /** * Read emails from DB */ function db_read_emails(){ if (!isset($db)) $db = new DB_WL; $email = array(); $execute = mysql_query("SELECT ID, IDEmail, EmailFrom, EmailFromP, EmailTo, DateE, DateDb, Subject, Message, Message_html, MsgSize FROM emailtodb_email ORDER BY ID DESC LIMIT 25"); while($row = mysql_fetch_array($execute)){ $ID = $row['ID']; $email[$ID]['Email'] = $row['EmailFrom']; $email[$ID]['EmailName'] = $row['EmailFrom']; $email[$ID]['Subject'] = $row['Subject']; $email[$ID]['Date'] = $row['DateE']; $email[$ID]['Size'] = $row['MsgSize']; } return $email; } function dir_name() { $year = date('Y'); $month = date('m'); $dir_n = $year . "_" . $month; echo $this->set_path(); if (is_dir($this->set_path() . $dir_n)) { return $dir_n . '/'; } else { mkdir($this->set_path() . $dir_n, 0777); return $dir_n . '/'; } } function do_action(){ if($this->num_message() >= 1) { if($this->msgid <= 0) { $this->msgid = 1; } else { $this->msgid = $_GET[msgid] + 1; } #Get first message $email = $this->email_get(); #Get store dir $dir = $this->dir_name(); #Get a userID $guid = $this->db_add_user($userid); #Insert message to db $ismsgdb = $this->db_add_message($email); $id_log = $this->add_db_log($email, 'Copy e-mail - start '); foreach($this->partsarray as $part){ if($part[text][type] == 'HTML'){ #$message_HTML = $part[text][string]; $this->db_update_message($part[text][string], $type= 'HTML'); }elseif($part[text][type] == 'PLAIN'){ $message_PLAIN = $part[text][string]; $this->db_update_message($part[text][string], $type= 'PLAIN'); }elseif($part[attachment]){ #Save files(attachments) on local disc // $message_ATTACH[] = $part[attachment]; foreach(array($part[attachment]) as $attach){ $attach[filename] = $this->mimie_text_decode($attach[filename]); $attach[filename] = preg_replace('/[^a-z0-9_\-\.]/i', '_', $attach[filename]); $this->add_db_log($email, 'Start coping file:"'.strip_tags($attach[filename]).'"'); $this->save_files($this->newid.$attach[filename], $attach[string]); $filename = $dir.$this->newid.$attach[filename]; $this->db_add_attach($attach[filename], $filename); $this->update_db_log('<b>'.$filename.'</b>Finish coping: "'.strip_tags($attach[filename]).'"', $this->logid); } // }elseif($part[image]){ #Save files(attachments) on local disc $message_IMAGE[] = $part[image]; foreach($message_IMAGE as $image){ $image[filename] = $this->mimie_text_decode($image[filename]); $image[filename] = preg_replace('/[^a-z0-9_\-\.]/i', '_', $image[filename]); $this->add_db_log($email, 'Start coping file: "'.strip_tags($image[filename]).'"'); $this->save_files($this->newid.$image[filename], $image[string]); $filename = $dir.$this->newid.$image[filename]; $this->db_add_attach($image[filename], $filename); $this->update_db_log('<b>'.$filename.'</b>Finish coping:"'.strip_tags($image[filename]).'"', $this->logid); } } } $this->spam_detect(); $this->email_setflag(); $this->email_delete(); $this->email_expunge(); $this->update_db_log('Finish coping', $id_log); if($email <> ''){ unset($this->partsarray); # echo "<meta http-equiv=\"refresh\" content=\"2; url=email.monitor.mail.php?msgid=".$this->msgid."\">"; if($this->mode == 'html') { echo "<meta http-equiv=\"refresh\" content=\"2; url=".$this->this_file_name."?msgid=0\">"; echo "E-mail extract"; } } } else { # No messages if($this->mode == 'html') { echo "<meta http-equiv=\"refresh\" content=\"10; url=".$this->this_file_name."?msgid=0\">"; echo "E-mail extract"; } } } }#end class ?>
  9. Hi All I have a site which I need to parse an email account and add the records to a database, however, I also need to create a userid based on a registration table. Now there are a number of ways to do this... firstly by regsitereing on the site, secondly by sending the MMS to a number which creates the email! I have tried to edit the script, and am not having any joy whatsoever! PLEASE could someone help me out here! I have attached the php page for all to see.... I am trying to do my thing on lines 486 to 501. Thanks in advance everyone!!! [attachment deleted by admin]
  10. Hi Diondev Thanks for the advice on the size issues.... I have sorted that out...many thanks. But, my issue now is this... the adding or mailing off of this is my problem... the forms obviously builds dynamically based on the number of products that are added to it... and I am stumped how I am going to get this to the client. My first prize would be to add it to a database and then let them view the order in the admin backend BUT how should I be doing this?? Should I be trying to add the whole basket into one field?? I will attach my functions.inc file that builds the cart and then the cart page itself.... please could you advise me!! [attachment deleted by admin]
  11. Good day everyone I have a page that generates a cart on a site. Basically what I want is that if the values of the size2 and 3 are empty then they must be hidden and if they are populated then be shown. I have tried a couple of options and am not winning! Could someone please help me out on this one urgently. Then... my next issue is that I need to mail this off to a client and am battling with that too becasue I am unsure on how to do this when the names of my fields are based on the products id!! Some help and advise would be greatly appreciated... here is the code I have....please..any urgent help would be appreciated! <?php function writeShoppingCart() { $cart = $_SESSION['cart']; if (!$cart) { return '<p>You have 0 in your shopping cart</p>'; } else { // Parse the cart session variable $items = explode(',',$cart); $s = (count($items) > 1) ? 's':''; return '<p>You have <a href="cart.php">'.count($items).' item'.$s.' in your shopping cart</a></p>'; } } function showCart() { global $db; //echo $db; $cart = $_SESSION['cart']; //echo $cart; if ($cart) { $items = explode(',',$cart); $contents = array(); foreach ($items as $item) { $contents[$item] = (isset($contents[$item])) ? $contents[$item] + 1 : 1; } $output[] = '<form action="cart.php?action=update" method="post" id="cart">'; $output[] = '<table border="0">'; foreach ($contents as $id=>$qty) { $sql = 'SELECT * FROM tbl_products WHERE prod_id = '.$id; //echo $sql2; $result = $db->query($sql); $row = $result->fetch(); extract($row); $output[] = '<tr>'; $output[] = '<td width="50px" align="center"><img src="prodImages/'.$prod_image.'" width="30px" height="30px"></td>'; $output[] = '<td nowrap=nowrap> </td>'; $output[] = '<td nowrap=nowrap>'.$prod_name.'</td>'; $output[] = '<td nowrap=nowrap>'.$size1.' @ R'.$price.'<input onclick="KW_calcForm(\'total'.$id.'\',100,-1,\'#price'.$id.'\',\'*\',\'#qty'.$id.'\')" name="price'.$id.'" type="radio" value="'.$price.'" checked="checked"/> '.$size2.' @ R'.$price2.'<input onclick="KW_calcForm(\'total'.$id.'\',100,-1,\'#price'.$id.'\',\'*\',\'#qty'.$id.'\')" name="price'.$id.'" type="radio" value="'.$price2.'" /> '.$size3.' @ R'.$price3.'<input onclick="KW_calcForm(\'total'.$id.'\',100,-1,\'#price'.$id.'\',\'*\',\'#qty'.$id.'\')" name="price'.$id.'" type="radio" value="'.$price3.'" /></td>'; $output[] = '<td nowrap=nowrap><input onblur="KW_calcForm(\'total'.$id.'\',100,-1,\'#price'.$id.'\',\'*\',\'#qty'.$id.'\')" name="qty'.$id.'" type="text" value="'.$qty.'" size="3" maxlength="5" /></td>'; $output[] = '<td nowrap=nowrap> </td>'; $output[] = '<td nowrap=nowrap><input type="text" name="total'.$id.'" size="5" /></td>'; $output[] = '<td nowrap=nowrap><a href="cart.php?action=delete&id='.$id.'" class="r">Remove</a></td>'; $total += $price * $qty; $output[] = '</tr>'; } $output[] = '</table>'; $output[] = ' '; $output[] = '<div><button type="submit" class="button">Update cart</button></div>'; $output[] = '</form>'; } else { $output[] = '<p>Your shopping cart is empty.</p>'; } return join('',$output); } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.