Jump to content

mjahkoh

Members
  • Posts

    104
  • Joined

  • Last visited

Everything posted by mjahkoh

  1. I dont know which php version you are using but please make your first line as <?php as apposed to <?
  2. SELECT email FROM emails WHERE email like "% %"
  3. I want to select all rows from a table whereby the contents may contain spaces eg "[email protected], [email protected]" Regards
  4. Silkfire. Please attach your matches variable. This will get me home. Regards
  5. Replace with this if(mysql_numrows($result) > 0){
  6. I got the below Div. I gather i got the following subtitles in the div (sometimes not all) $subtitle = array('Postal Address:','Street:','Town :','Telephone:','Mobile:','Contact Person:','Country:','e-mail:','Website:'); It occurs that the title is enclosed in font tag and the title text is what follows after the closing </font> upto the next <br>; Please help on retrieving The Title and the text. Regards <div align="left" id="tabledetails__"><font color="#4E779F" size="+1">Beverages Ltd</font><br> <font color="brown">Postal Address: </font>1604120 <br> <font color="brown">Street: </font>Karatina Town Council <br> <font color="brown">Town :</font>Kampala <br> <font color="brown">Telephone: </font>+254 414 983456 <br> <font color="brown"> Country: </font>Kenya <br> <font color="brown">e-mail: </font><a href="mailto:[email protected]">[email protected]</a> </div>
  7. $title = array('Category :','Location:','Address:','Telephone:','City:','Region:','Description :'); How possible is it search for eg spaces and ":" in the array and replace them with nothing and capitalize elements. Regards, Jackson
  8. I got an Array whereby the contents are to be searched in a string and removed(stripped) . This leaves the text bare of the 'Subtitle'. The text is derived in a loop so only one field will be available in a loop eg 'Address: P.O. Box 4, Mogososiek 20403'. So we search and remove 'Address:' $subtitle = array('Category :','Location:','Address:','Telephone:','City:','Region:','Description :','Website:','Email:','Postcode:','Street:','Phone:','County:'); $text = "Category : Western Province, Location: Address: P.O. Box 4, Mogososiek 20403 Telephone: 052-21051 City: Mogososiek Region: Western Description : "; Please help Regards, Jackson
  9. I'm using the "PHP Simple HTML DOM Parser" - http://simplehtmldom.sourceforge.net/manual.htm I'm running through a bunch of elements and I need to change to change This <div class="tpsobivc_doted"></div> To this <div class="tpsobivc_doted" id="tpsobivc_doted"></div> Regards Jackson
  10. Very grey i am in css. I have a div which the following parameters. i want a header to be of the same size but it wont. please help Header - has logo plus banner (225+728)=953 div properties margin left 4 Padding left 37 width 904 What should be the cummulative total of header images so they can match
  11. Got three variables [localpath] => C:/xampp/htdocs/Zenphoto/albums/90/ [name] => 90 [albumdir] => C:/xampp/htdocs/Zenphoto/albums/ Albumdir is the root folder of all snaps(albums). name is the name of the folder on Albumdir(90). Using localpath & albumdir, how would i know that a folder(90) exists in albumdir. Regards Jackson
  12. Can someone point me in the right direction on reading email from a website where the email address is confined between two words "E-mail" & Post. What i got below just reads one time. $handle = fopen($address, "r"); // point stream to site while (!feof($handle)) { $contents .= fread($handle, 8192); // read site into buffer } echo "searching site: " . $address ."<br>"; // pick word to start reading from $start = "E-mail"; $start_pos = strpos($contents, $start); // find position of that word echo "Starting at: " . $start . "<br>found at location: " . $start_pos . "<br>"; $first_trim = substr($contents, $start_pos); // pick word to stop reading at $stop = "Post"; $stop_pos = strpos($first_trim, $stop); // find position of that word echo "Stoping at: " . $stop . "<br>found at location: " . $stop_pos . "<br>"; // cut the string before and after selected words $second_trim = substr($first_trim, 0, $stop_pos); echo "<p>" . $second_trim; fclose($handle);
  13. Does anybody have links or scripst on a script where the user has an account with money which decreases as one purchases items. Regards
  14. Can this be done so I hide my code. Thanks
  15. <?php I downloaded a cart from wfcart which I assimiliated into my session having a loggin procedure(jpmasters). The problem is when I shop the details of ones pages transaction are not available in another page and vice versa and then disapppear. This is my code //Class session { /* Class constructor */ function Session(){ $this->time = time(); $this->startSession(); } var $total = 0; var $itemcount = 0; var $items = array(); var $itemprices = array(); var $itemqtys = array(); var $iteminfo = array(); function get_contents() { // gets cart contents $items = array(); foreach($this->items as $tmp_item) { $item = FALSE; $item['id'] = $tmp_item; $item['qty'] = $this->itemqtys[$tmp_item]; $item['price'] = $this->itemprices[$tmp_item]; $item['info'] = $this->iteminfo[$tmp_item]; $item['subtotal'] = $item['qty'] * $item['price']; $items[] = $item; } return $items; } /* end of get_contents */ function add_item($itemid,$qty=1,$price = FALSE, $info = FALSE) { global $database; // adds an item to cart if(!$price) { $price = $database->wf_get_price($itemid)*$qty; } if(!$info) { $info = $database->CartProductInfo($itemid);} if($this->itemqtys[$itemid] > 0) { // the item is already in the cart.. // so we'll just increase the quantity $this->itemqtys[$itemid] = $qty + $this->itemqtys[$itemid]; $this->_update_total(); } else { echo 'itemid query '.$itemid.'<br>'; echo 'qty query '.$qty.'<br>'; echo 'price query '.$price.'<br>'; echo 'info query '.$info.'<br>'; $this->items[]=$itemid; $this->itemqtys[$itemid] = $qty; $this->itemprices[$itemid] = $price; $this->iteminfo[$itemid] = $info; } $this->_update_total(); } /* end of add_item */ //how I add into the cart if($_POST['Submit']) { $product = $products[$_POST['id']]; $session->add_item($_GET['uID'],$_POST['qty'],$ProductInfo["price"],$ProductInfo["synopsis"]); } //how I retrieve the cart contents if($session->itemcount > 0) { foreach($session->get_contents() as $item) { echo "<br />Item:<br/>"; echo "Code/ID :".$item['id']."<br/>"; echo "Quantity:".$item['qty']."<br/>"; echo "Price :$".number_format($item['price'],2)."<br/>"; echo "Info :".$item['info']."<br />"; echo "Subtotal :$".number_format($item['subtotal'],2)."<br />"; echo "<form method=post><input type='hidden' name='id' value='".$item['id']."'/><input type='submit' name='remove' value='Remove'/></form>"; } echo "---------------------<br>"; echo "total: $".number_format($cart->total,2); } else { echo "No items in cart"; } ?>
  16. Reframing my question, since I have a login framework (jpmaster) with a session, can I assimilate the cart session into the login session. Any body done this. before
  17. I have incorporated the Jpmaster77 login system into my website. I now want to add wfcart shopping cart. Now i incorporated all the carts variables into the login session but it doesnt work. Can two sessions work side by side or how is it achieved. Jackson
  18. How would i construct a concat as below concat (fielda,fieldb , if (fieldz=1,'cat','dog'), if(fieldy=1,'dog','mouse') ) the concat is ok without the ifs and appends the result of evaluating if (fieldz=1,'cat','dog') and if(fieldy=1,'dog','mouse') ) to fielda and fieldb Thanks in advance
  19. Why would i construct a concat as below concat (a,b , if (z=1,'c','cc'), if(y=1,'d','dd') ) where the results of if (z=1,'c','cc') and if(y=1,'d','dd') are added to the string depending with their results.
  20. I have 2 textboxes for name and description plus the row number(1) in the first column. Iam facing a problem where i need to add the same number of textboxes below the above one plus the row number (2) dynamically, plus another column for deleting the entire row elements. this is also required to be aligned horizontally maybe using divs to the first row. adding the textboxes is not the main problem. aligning is. Please get me started Thanks in advance Mungai
  21. The link doesnt work
  22. whats wrong with this? i get text instead of a url link $body = "Hi ".$user.",\n\n" ."2.)<a href=\"http://www.mysite.biz?IDo=".base64_encode($user)."&IDp=".base64_encode($pass)."\">complete registration</a><br>"; return mail($email,$subject,$body,$from); all the parameters are fine.
  23. Anybody help me send a link in an email using php mail function Eg <a href="index.php?username=myname">Click here to activate your account</a>
  24. Anybody show me to put a link in a mail with php mail function.
  25. From the errors below i c u did not post all files. Have u included functions.php correctly Warning: include_once(lib/functions.php) [function.include-once]: failed to open stream: No such file or directory in D:\xampp\htdocs\testsite\register.php on line 3 Warning: include_once() [function.include]: Failed opening 'lib/functions.php' for inclusion (include_path='.:\xampp\php\pear\') in D:\xampp\htdocs\testsite\register.php on line 3
×
×
  • 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.