Jump to content

DjNaF

Members
  • Posts

    42
  • Joined

  • Last visited

    Never

Everything posted by DjNaF

  1. hello; i didn't know where to post it, in php forum or javascript. i have a once order page, where you choose items from different drop menus. when ever a user choose am item it add its price in the total text field, in addition i want to save the form in the database mysql. <option value="ProductID">Product Name</option> i use the ProductID to save it in mysql, i found a way to calculate price if i placed the price instead of ProductID for the value, but then i can't save the ProductID in the database. anyone got a solution? Thank you
  2. So what we're going to do?
  3. we need a solution for this problem!
  4. its used to work before yesterday, and i recieve email with a flag not verified sender id. but not i am not recieving at all! starting from today. i tried different servers , same results. even i've tried to send throught outlook using my isp smtp server, but the sender is @hotmail.com , the email was delivered to a yahoo email but hotmail NO!
  5. RockingGroudon what happened please?
  6. sure it works, but try to send to hotmail and teh sender is something@hotmail.com it won't work!
  7. yes please do , i am waiting for your reply
  8. can u make the sender anything@hotmail.com at ur mail server and then send it to any hotmail address? did u test it now?
  9. waiting for ur help! i think all of u will realise soon that they are facing the same problem. idiot hotmail will affect many script, for example tell a friend script!
  10. did u try to send lately from hotmail email? his problem started from yesterday, i idnt face anyproblem with my script before yesterday! try ur script now and tell me if its working fine please i used this code [code=php:0] $header = "From: anyemail@hotmail.com\n"; $header .= "MIME-Version: 1.0\n"; $header .= "Content-Type: text/html; charset=iso-8859-1\n"; $header .= "X-Priority: 3\n"; $header .= "X-MSMail-Priority: Normal\n"; $header .= "X-Mailer: PHP / ".phpversion()."\n"; $message = "i am testing the service please let it work!!!"; $to = "myemail@hotmail.com"; $subject = 'Hello'; mail($to, $subject, $message, $header); [/code] its not sending to hotmail at all! IT USED TO WORK FINE BEFORE YESTERDAY but when i change $header = "From: anyemail@hotmail.com\n";  to $header = "From: anyemail@yahoo.com\n"; it works fine! test my code and tell me! or if u have a working code please give it to me! Thank you all
  11. Hello all; its seems that hotmail as of yesterday stopped delivering emails sent throght mail() function or even throught anything, if the sender email is @hotmail.com its not a problem of header or something, they did something to stop delivering emails if the sender wasnt verified and if the email wasn't sent throught hotmail's servers!! i dont know if webmail scripts is blocked too or not i am trying to find a solutions for this, i hope someone can help i've tried to search for hotmail smtp, so that i connect to smtpo server and make the sender looks like any email @hotmail.com , in this way the sender will be marked as verified from their servers. i want a solution please! they are idiots by blocking this service, many php scripts will face problems! specially forums that sends confirmation email to the new user, and the sender is @hotmail.com not a pop email or any other free email service like yahoo or gmail please help me
  12. Hello i am looking for an email collector that can collect emails from websites. with the ability to increase the id of the page example: the url is: www.domain.com/profile.php?id=[!--coloro:#FF0000--][span style=\"color:#FF0000\"][!--/coloro--]1234[!--colorc--][/span][!--/colorc--] i want to let him start from 1 to 2000 for example without giving the url manually everytime, any idea about that? Thank you
  13. I want the resdtaurant that has 1 AND 2 AND 3 together! OR will list all restaurants that have 1 alone and 2 alone, and 3 alone I DONT want that!
  14. hello; i have this table (restcards_tbl) , [b]both are primary keys[/b] +--------+--------+ | restid | cardid | +--------+--------+ | 1 | 1 | | 1 | 2 | | 1 | 4 | | 1 | 6 | | 15 | 1 | | 15 | 2 | | 15 | 3 | | 15 | 4 | | 15 | 12 | +--------+--------+ and this table (cards_tbl) +--------+------------------+ | CardID | CardName | +--------+------------------+ | 1 | Visa | | 2 | Master Card | | 3 | American Express | | 4 | GO Card | | 5 | Golden Card | | 6 | Green Card | | 7 | Silver Card | | 12 | Bronze Card | +--------+------------------+ every restaurant have an id RESTID. and CARDID means , the id of the cards accepted in the restaurants. i want a coide that the user can search for the restaurants that accepts for example Visa AND MasterCard AND American Express and it displayes the id for those restaurants! i tried [code]select restid from restcards_tbl where cardid=1 and cardid=2 and cardid=3[/code] but no results :( if any1 has a php code to help me display results i'd be grateful Thank you
  15. I am really thankful hitman6003 how can i put value for the check box? value="CardID" can u give me the update for the upper code please please do u have msn messenger to contact you?
  16. Hello; i am having a problem in displaying data from Mysql in checkboxes. I got the following tables: * Cards_table: ( CardID , CardName ) for example... 1 , Visa 2 , MasterCard 3 , Amex * Restaurants_Cards: ( RestaurantID , CardID )\ For example... 1 , 1 1 , 2 2 , 1 3 , 3 4 , 2 that mean the restaurant with the ID 1 , accepts Visa and MasterCard i manage to save the data from checkboxes into Mysql but i added an option to edit Restaurant Accepted Cards so i want a want to display the cards names as check boxes ( which i already did) and put the already accepted cards in Restaurants_Cards table as CHECKED and the not accepted card arent checked. this is the code i used to display checkboxes, and waiting for you to help me add on it, to show the already accepted cards as checked in the checkbox. [!--coloro:#FF0000--][span style=\"color:#FF0000\"][!--/coloro--] $query="select CardID, CardName from cards_tbl"; $result=mysql_query($query); [!--coloro:#999999--][span style=\"color:#999999\"][!--/coloro--]//$rescardq="select CardID from restcards_tbl where RestID=$restid";[!--colorc--][/span][!--/colorc--] [!--coloro:#999999--][span style=\"color:#999999\"][!--/coloro--]//$rescardsr=mysql_query($rescardq);[!--colorc--][/span][!--/colorc--] while($array= mysql_fetch_array($result)) { echo "<input type='checkbox' name='card[]' value='$array[CardID]'>$array[CardName]<br>\n"; }[!--colorc--][/span][!--/colorc--]
×
×
  • 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.