-
Posts
60 -
Joined
-
Last visited
Everything posted by JohnTipperton
-
How To Share A Logged In Session Between To Web App?
JohnTipperton replied to silvercover's topic in PHP Coding Help
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. -
sorry about that try to use this one <?php printf("uniqid(): %s\r\n", uniqid()); ?>
-
maybe this could help you http://mobiledevelopertips.com/core-services/create-md5-hash-from-nsstring-nsdata-or-file.html
-
Looking To Save And Recall Dropdown Values
JohnTipperton replied to gummby8's topic in PHP Coding Help
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> -
How To Share A Logged In Session Between To Web App?
JohnTipperton replied to silvercover's topic in PHP Coding Help
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, -
How To Share A Logged In Session Between To Web App?
JohnTipperton replied to silvercover's topic in PHP Coding Help
use the same $SESSION for web app and ticketing system.. since you will not destroy the session until the user Logs Out. -
Playing A .pps On Fullscreen Without Human Imput
JohnTipperton replied to TheDutchBeast's topic in PHP Coding Help
what about converting your .pps to flash? -
no problem mate your welcome
- 9 replies
-
- .wmv
- mediaplayer
-
(and 2 more)
Tagged with:
-
<PARAM NAME="AutoStart" VALUE="False"> change it to <PARAM NAME="AutoStart" VALUE="True">
- 9 replies
-
- .wmv
- mediaplayer
-
(and 2 more)
Tagged with:
-
lemme try it.
- 9 replies
-
- .wmv
- mediaplayer
-
(and 2 more)
Tagged with:
-
i think you should need to set your height and width according to the actual size of the LCD screen,
- 9 replies
-
- .wmv
- mediaplayer
-
(and 2 more)
Tagged with:
-
:: 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
-
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>
-
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>
-
can you show me the code?
-
lol soon you will be that fast. hope you can make it.
-
Getting Users From A Table And Displaying Them?
JohnTipperton replied to CoreDestroyer's topic in PHP Coding Help
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 -
i just posted on how he will refresh the page not exactly assigning a variable.
-
yea its kinda weird on his conditional statement the $money should be i think 0 to appear no money.
-
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;
-
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/>'; } ?>
-
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); ?>
-
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
-
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>
-
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.