The strtoupper function takes one argument, the string you want converted to upper case and returns the converted string. Only letters of the alphabet are changed, numbers will remain the same.
Category Archives: Programming
php copy files from externat server
<? $url=”http://www.bbflights.com/VatsimPHP/download/”; if(!file_exists(“VatsimPHPgenerator.php”)) { copy($url.”VatsimPHPgeneratorupdate.php”, “VatsimPHPgenerator.php”); } if(!file_exists(“VatsimPHPoptions.txt”)) { copy($url.”VatsimPHPoptions.txt”, “VatsimPHPoptions.txt”); } ?>
PHP array Form Post
Form Code <label> <input type=”checkbox” name=”oik_stoxoi[]” id=”ergasia” value=”Me perisoteri ergasia” /> Με περισσότερη εργασία</br><br> </label> <label><input type=”checkbox” name=”oik_stoxoi[]” id=”ergasia” value=”Me perisotero Pragramatismo” /> Με περισσότερο προγραμματισμό</br><br> </label> <label> <input type=”checkbox” name=”oik_stoxoi[]” id=”ergasia” value=”Me perisoteri tolmi” />Mε περισσότερη τόλμη</label> PHP action Code <?php for ($i=0; $i<count($_POST[‘oik_stoxoi’]); $i++){ $assistivetech_req .= addslashes($_POST[‘oik_stoxoi’][$i].” – “); //do this //echo $assistivetech_req; …
Send This page to a frind Javascript Script
<script type=”text/javascript”><!– var SubjectLine=’Take a look at this web page I found, ‘+top.document.title; var BodyText=’You can see this page at: ‘+top.location.href; var Message=’ <A CLASS=contact HREF=”mailto:?SUBJECT=’+escape(SubjectLine)+’&BODY=’+escape(BodyText)+’” OnMouseOver=”status=\’Envoyer cette page à vos amis\’; return true;” TITLE=”Send your friends e-mail about this page”>Send this page<\/A>’; var MessageIE=’ <A CLASS=contact HREF=”mailto:?SUBJECT=’+(SubjectLine)+’&BODY=’+(BodyText)+’” OnMouseOver=”status=\’Envoyer cette page à vos amis\’; return …
Continue reading “Send This page to a frind Javascript Script”
flash fullscree without Scaling
in first frame on movie call action script with fscommand(“fullscreen”, true); fscommand(“allowscale”, false);
flash exit – close – quit
on (release) { fscommand(“quit”); }