Jump to content

JohnTipperton

Members
  • Posts

    60
  • Joined

  • Last visited

Everything posted by JohnTipperton

  1. for example www.mysite1.com the session name is $_SESSION['site1'] www.mysite2.com the session name is $_SESSION['site2'] if you login the mysite1 save the $_SESSION['site1'] and $_SESSION['site2'] same as the mysite2. i mean when you login the site you are saving the 2 different session variable.
  2. sorry about that try to use this one <?php printf("uniqid(): %s\r\n", uniqid()); ?>
  3. maybe this could help you http://mobiledevelopertips.com/core-services/create-md5-hash-from-nsstring-nsdata-or-file.html
  4. to be able to populate it you need to include selected="selected" in option value example below <?php $SQL = "" // some line of SQL codes. $years=date('Y'); echo '<option value='.$rowid[years].' selected="selected">'.$rowid[years].'</option>'; for ($i=$years;$i>=2000;$i--) { echo '<option value='.$i.'>'.$i.'</option>'; } ?> </select>
  5. yes but if he is using in a same domain it will work in a 2 different domains it will be hard though. what about create a 2 different session name then store the value in those 2 session so if the user access the other site it will automatically login,
  6. use the same $SESSION for web app and ticketing system.. since you will not destroy the session until the user Logs Out.
  7. what about converting your .pps to flash?
  8. no problem mate your welcome
  9. <PARAM NAME="AutoStart" VALUE="False"> change it to <PARAM NAME="AutoStart" VALUE="True">
  10. lemme try it.
  11. i think you should need to set your height and width according to the actual size of the LCD screen,
  12. :: it is an operator to define namespace for further details visit this link --> http://stackoverflow.com/questions/4269034/what-is-the-meaning-of-prepended-double-colon-to-class-name
  13. it should be like this if in php <table width="425" border="1"> <tr> <td width="107">Product</td> <td width="98">Number</td> <td width="92">Price</td> <td width="100">Sum</td> </tr> <?php while($row = mysql_fetch_array($result)) { ?> <tr> <td height="42"><?php $row['Product']; ?></td> <td><?php $row['Number']; ?></td> <td><?php $row['Price']; ?></td> <td><?php $row['Sum']; ?></td> </tr> <?php } ?> </table>
  14. just create a table to make it presentable <table width="425" border="1"> <tr> <td width="107">Product</td> <td width="98">Number</td> <td width="92">Price</td> <td width="100">Sum</td> </tr> <tr> <td height="42">xxxxxx</td> <td>xxxxxxx</td> <td>xxx</td> <td>xxx</td> </tr> <tr> <td height="44">xxxxxx</td> <td>xxxxxxx</td> <td>xxx</td> <td>xx</td> </tr> <tr> <td height="49">xxxxxx</td> <td>xxxxxxx</td> <td>xx</td> <td>xx</td> </tr> <tr> <td height="50">xxxxxx</td> <td>xxxxxxx</td> <td>xx</td> <td>xx</td> </tr> </table>
  15. can you show me the code?
  16. lol soon you will be that fast. hope you can make it.
  17. yes it is possible you will just query the selected primary key it is very common in all networking sites. just like using GET method sample www.somesites.com?profile.php?id=1
  18. i just posted on how he will refresh the page not exactly assigning a variable.
  19. yea its kinda weird on his conditional statement the $money should be i think 0 to appear no money.
  20. what about using a javascript to refresh the page? instead using header("Location: /store.php"); what about change it to $loading= '<body onload="Alertbox('Points','store.php')">'; echo $loading;
  21. i did tested your work in my localhost and it works. try my revise code test.php <table width="30%" border="0" cellpadding="7" cellspacing="5"><tr> <td><a href="test2.php?view=1"><img src="spike.jpg" width=102 height=147/></a></td> </tr> </table> test2.php <?php $view1= $_GET['view']; if ($view1 == 1) { echo '<img src="spike.jpg" WIDTH=500 HEIGHT=400/>'; } elseif ($view1 == 2) { echo '<img src="spike2.jpg" WIDTH=500 HEIGHT=400/>'; } else { echo '<img src="spike3.jpg" WIDTH=500 HEIGHT=400/>'; } ?>
  22. try this code bro i created a function to be able to output the fraction form. <?php function decToFraction($float) { // 1/2, 1/4, 1/8, 1/16, 1/3 ,2/3, 3/4, 3/8, 5/8, 7/8, 3/16, 5/16, 7/16, // 9/16, 11/16, 13/16, 15/16 $whole = floor ( $float ); $decimal = $float - $whole; $leastCommonDenom = 48; // 16 * 3; $denominators = array (2, 3, 4, 8, 16, 24, 48 ); $roundedDecimal = round ( $decimal * $leastCommonDenom ) / $leastCommonDenom; if ($roundedDecimal == 0) return $whole; if ($roundedDecimal == 1) return $whole + 1; foreach ( $denominators as $d ) { if ($roundedDecimal * $d == floor ( $roundedDecimal * $d )) { $denom = $d; break; } } return ($whole == 0 ? '' : $whole) . " " . ($roundedDecimal * $denom) . "/" . $denom; } echo decToFraction(0.5); ?>
  23. change your code into $money = 0.2; if($money<=1) { echo 'no money'; } else { echo 'OK'; } 0.2 is greater than zero hope it works
  24. create a session variable for your first submission. $selectedvalue = $_SESSION['selectedvalue']; and in the select box you must include a selected="selected" there for the code should be like <option <?php echo $selectedvalue;?> value="<?php $selectedvalue ?>" selected="selected"><?php echo $selectedvalue></option> <option <?php echo $proforma;?> value="NoProforma"><?php echo JText::_('NoProforma');?></option>
  25. the form2 variable doesn't have any value you need to pass a value from the iteration like $form2 = '<option value='$counter'>$counter</option>'; // this will contain a value for your variable form2.
×
×
  • 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.