Jump to content

tycy

New Members
  • Posts

    8
  • Joined

  • Last visited

tycy's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Ok first of all i have this code at the final of my insert and update code. if (!mysql_query($sql,$conn)) { die('Error: ' . mysql_error($conn)); } else{ header("Location: finalmsj.php?finalmsj=".$hiwu.""); } mysql_close($conn); } In the finalmsj.php i have a part of a code.and the variables $hiwu and another 3 somewhere in page with the context. if(isset($_GET['finalmsj'])){ $finalmsj = $_GET['finalmsj']; So now how i can call the $hiwu variable thru GET,it's kind of tricki for me this $_GET and maybe now i can understand it. I looking for the internet and i try something like this but doesn't work.Always the msj is from $hiwa variable even in the link i have something different and BTW. when the insert or update is done,the msj appear and the link look like this. http://192.168.0.15:888/phone/adm/finalmsj.php?finalmsj= it suppose to be http://192.168.0.15:888/phone/adm/finalmsj.php?finalmsj=hiwa or something after equal sign ( = ) if(isset($_GET['finalmsj'])){ $finalmsj = $_GET['finalmsj']; if($finalmsj = $hiwa){ echo $hiwa; } elseif($finalmsj = $hiwu){ echo $hiwu; } elseif($finalmsj = $aboutusa){ echo $aboutusa; } elseif($finalmsj = $aboutusu){ echo $aboutusu; } } I know the above code is wrong but i can find something helpful. Thx for any help.
  2. Well actualy what i want to do is. I have a Select from db which in case the DB contain information.the script will create a Select Form.And when i will use the select option , i can UPDATE my desire info. in a few words,it's 3 Input texts + Select Form , when i choose one option from select and fill up those 3 inputs , some things from my site will be updated. What i'm try to do is , to display the info from db in the Value option of the input fields when i choose one option from select. But i realize it's little bit complicated to do this, i thought will work with onclick or onload option and some changes on the php code , but is not that simple. $sql = "SELECT * FROM welcome"; $rows = $conn->sqlExec($sql); $nr_row = $conn->num_rows; $pag .=' <span class="styleform"><h4>Edit About Section !</h4></span> <br /> <script type="text/javascript" src="checkjs/welcome.js"></script> <form method="post" action="aboutsend.php" onsubmit="return checkForm(this)";> <table border="0" cellspacing="0" cellpadding="1" style="border:1px solid #888888; padding:1px;"> <tr><td><span class="styleform">Select Paragraph:</span></td><td> <select name="paragraphs" id="paragraphs"> <option>Select Paragraph</option> '; foreach($rows as $row) { $pag .='<option value="'.$row['id'].'" >Paragraph '.$row['id'].'</option>'; } $pag .=' </select> </td></tr> <tr><td><span class="styleform">Principal Title About Us :</span></td><td><input type="text" name="sttitle" id="sttitle" size="50" /></td></tr> <tr><td><span class="styleform">Secont Title About Us :</span></td><td><input type="text" name="sectitle" id="sectitle" size="50" /></td></tr> <tr><td><span class="styleform">Content About Us :</span></td> <td><textarea name="content" id="content" rows="7" cols="52"></textarea></td></tr> <tr><td><span class="styleform">Edit About Us:</span></td><td><input type="submit" name="updwelcome" value="Edit Info" /></td></tr> </table> </form> The code is this one.is the old code , i give up to continue this task. I just think could works if i make a select with all info , i put them intro array and with some js code to fill up the inputs , like onload Paragraph 1 display the array ..but i don't have enaught knowledges about js or ajax
  3. Can someone help me with a code , which can make a select form to reload the page or the form in the moment when a option from it , is been selected. i try it whit onClick="document.location.reload()"; but doesn't work properly. thx
  4. Ch0cu3r thx, your ideea was working.So the code now is like this.maybe someone will need an example. nr_row = $conn->num_rows; $i = 0; if($nr_row>=0) { foreach($rows as $row) { $i++; $div_cls = (($i % 2) == 0) ? 'linksmen_s' : 'linksmen';
  5. That i try to do this,but how i can to do this? i try-it this part of code,and doesn't work.. $div_cls = (($nr_row % 2) == 0) ? 'linksmen' : 'linksmen_s';
  6. Hello all i have this code <?php $sql = "SELECT DISTINCT phonemodel FROM iphone ORDER BY phonemodel DESC LIMIT 4"; $rows = $conn->sqlExec($sql); $nr_row = $conn->num_rows; if($nr_row>=0) { $div_cls = (($nr_row % 2) == 0) ? 'linksmen' : 'linksmen_s'; foreach($rows as $row) { echo '<div class="'.$div_cls.'" title="'.$row['phonemodel'].'"><a href="iphone.php?phonemodel='.$row['phonemodel'].'"><img src="images/mark.png" alt="" /> '.$row['phonemodel'].'</a></div>'; } } ?> And looks like,the code take only firs class (linksmen) ,the condition else not working.did someone what is wrong. Thx
  7. Yes,it's working like this,but i have to select only phonemodel , looks like when you have more then 2 cols there not working.But that is not a problem for my,just i let you know maybe somebody need a thing like this. I didn't have time to say thx for the answer. So thx !
  8. Hello All From the begin i have the following code. <?php $sql = "SELECT id,phonemodel FROM iphone"; $rows = $conn->sqlExec($sql); $nr_row = $conn->num_rows; $meniu ='<ul>'; if($nr_row>=0) { foreach($rows as $row) { $meniu .= '<li><a href="iphone.php?id='.$row['id'].'">'.$row['phonemodel'].'</a></li>'; } } $meniu .= '</ul>'; echo $meniu; if(isset($_GET['id'])) { $id = (int)$_GET['id']; $sql = "SELECT * FROM iphone WHERE id = $id"; $rows = $conn->sqlExec($sql); $nr_rows = $conn->num_rows; if($nr_rows>0) { foreach($rows as $row){ echo 'Name Tel: '.$row["phonemodel"].' Title : '.$row["titlereparation"].' Pret : '.$row["price"].' Message : '.$row["msj"].' ID : '.$row["id"].'<br />'; } } else { echo '0 Results'; } } ?> Basicaly i have a website for phone repairs.And i want to create in iphone.php a menu from DB and when i acces the menu with _GET variable, when i press Iphone 5s (iphone.php?id=id page) the code have to display to me,all reparations for iphone 5s. Until now,i succssed to create the Menu but the code keep add same line in the menu when i add for example a second reparation for 5s.And i don't know how to select all reparation for 5s and display them in a single link like above Iphone 5s (iphone.php?id=id page). Now the script working like this.Create a menu with all phone names. Iphone 5s Iphone 3 Iphone 3s Iphone 4 Iphone 5s Iphone 5s Shoud be like Iphone 5s Iphone 3 Iphone 3s Iphone 4 Other new devices.. And display the reparation in every link from list By ID.i try it to select by phone names,not working. Any body with any ideea please? Thx so much
×
×
  • 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.