- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
74 Posted Topics
Hi All, I just want to share my code. A lots of website said that php is on server side and javascript is on client side...they said we cannot run php on javascript... here's how we can run php function when you click call the onchange events on javascript. [code=php]function … | |
| |
Re: what is the type of laptop? Acer? Dell? etc....give us the model number. | |
Re: > hi > I need to display date which is stored in database and need to format and display on web page the current format is (Y-m-d) > I need to display as (d-m-Y); > On the web page pls anybody help me with the php script I will paste … | |
Re: * cd080802.zip (~3MB) - Bootable CD image * cd080526.zip (~3MB) - Previous release, Bootable CD image * bd080526.zip (~1.4M) - Bootdisk image * drivers1-080526.zip (~310K) - Disk drivers (mostly PATA/SATA) * drivers2-080526.zip (~1.2M) - Disk drivers (mostly SCSI) [url]http://www.petri.co.il/forgot_administrator_password.htm#1[/url] tested 100% okay! | |
Re: try to see. bin2hex() bindec() hexdec() ceil() number_format() base_convert() | |
Re: [QUOTE=madristaa;840360]Hello friends, I have a very minor error, but i am not able to figure out which one is that. I have a simple form page and it goes to the another page and insert the values in database. But the thing is it inserts multiple rows in the database. … | |
Re: put the date constant inside your code. CONST dateExpired = "2010-APR-13"; everytime your program runs....detect the user computer time now(); then do the comparison if dateExpired > now() okay if not...create an error. | |
Re: try to mute all then open one by one in "Sounds and Audio Devices" properties | |
Re: create one field on your table seat_taken. if the seat is occupied put TRUE if not put FALSE then get that chair owned by whom and what branch. from that you can control your available seats and what branch. I hope it helps... | |
Re: [url]http://support.microsoft.com/kb/307848[/url] | |
Re: [code] Function FormatPhoneNumber(Text As String) As String Dim tmp As String If Text <> "" Then ' First get rid of all embedded dashes, if any. tmp = FilterString(Text, "0123456789") ' Then reinsert them in the correct position. If Len(tmp) <= 7 Then FormatPhoneNumber = Format$(tmp, "!@@@-@@@@") Else FormatPhoneNumber = … | |
Re: [QUOTE=mandyb;853354]I am needing help. I want to create files with variable file names - I am creating a membership website and want each member to be able to have a blog username.htm The problem is that when I try to create this using the fopen function it is not recognizing … | |
Re: type: lspci -vv | less and look for the chips number and vendor. from that you will know what driver are you going to install. Some wireless card are using the same chips but they are just different in manufacturer's name. | |
Re: according to mattp: Segmentation fault is caused by referencing memory thats already been freed, using pointers incorrectly, or trying to access some messed up hardware. I think you have problem in using pointers incorrectly. try to use *arr not **arr what I read is **arr is for 2 dimensional array … | |
Re: check if the printer and file sharing is active there should be a check on it on your workstation. Check also if your printer is shared into network there is a sharing icon on it. Make sure your pc is on the same Workstation Name, check the IP of your … | |
Re: try this. G: -------> separate the drive letter. cd "Documents and settings\ravi kiran\recent" del /f kiran.txt | |
Re: try to remove all your IDE connections... Integrated Device/Drive Electronics. one by one...first your cdrom cable, next your hdd or cdrw. and try to open again. | |
Re: [url]http://www.computing.net/answers/windows-xp/how-i-solved-mupsys-problem-xp-pro/97354.html[/url] [url]http://www.aitechsolutions.net/mupdotsysXPhang.html[/url] try that about Mup.Sys Issue ... google Mup.sys issues.... | |
Re: Boot from your CD and follow the directions to start Recovery Console. Then: 1. Insert and boot from your WindowsXP CD. 2. At the first R=Repair option, press the "R" key 3. Press the number that corresponds to the correct location for the installation of Windows you want to repair. … | |
Re: Your ocx and dll's are not registered in the registry. get all your dll and ocx create a batch file register.bat inside the file register.bat regsvr32 MSHFLXGD.OCX ---> FLEXGRID regsvr32 MSDATGRD.OCX----> DATAGRID regsvr32 MSADODC.OCX----> DATAGRID PUT ON C:\WINDOWS\SYSTEM32 all these files. REMEMBER: run this register.bat right click in windows explorer … | |
Re: try CREDITOComboBox.SelectedItem.ToString | |
Re: [QUOTE=justinmyoung;839485]I'm working on implementing a php registration/login script. When a user registers and then login - they are directed to a page that I would like to display a form, such as you would see in a contest. The person would fill out the form, entering the information into the … | |
Re: read this: [url]http://www.gidforums.com/t-1226.html[/url] | |
Re: use the EOF function you have an empty line inside your file. Do While Not EOF(1) -->your file number your code here... Loop | |
Re: ROMAN_ARRAY_RESULT DB 50 DUP ? ----> NEED (?) ROMAN_ARRAY_RESULT DB 50 DUP (?) --should be like this. WHAT IS "DN"........NXT DN (?) NXT DB (?) CHECK_NUM PROC NEAR ;check if this digit is anumber between 0-9 mov ax, num cmp ax, 30h jl INVALID cmp ax, 39h jg INVALID xor … | |
Re: [code=visualbasic] Do Do While isConverted = True counter += 1 If chancecount <= 8 AndAlso usernum < randomnum Then chancecount = chancecount + 1 Me.xAnswerLabel.Text = "Oops, too low. Go a little higher" Exit Do ElseIf chancecount <= 8 AndAlso usernum > randomnum Then chancecount = chancecount + 1 Me.xAnswerLabel.Text … | |
Re: post your code let us see...the problem why only 1st row of the query displayed. | |
Re: in line 25: $this->rs[] = mysql_query($sql); put a [] after the rs. or try to declare your var $rs = array(); | |
Re: can you post your code after "showsuboptions" with 3 links. and show us how you call the id inside your database. | |
Re: do not include C:\ ...........follow the root of your website. root????\web\images_files\ | |
Re: try to remove the motherboard battery! or reset the jumper on your motherboard. | |
Re: CREATE TABLE IF NOT EXISTS newTable SELECT * FROM anotherTable WHERE yourcondition='conditionvalue' | |
Re: //make it TAB delimited file [code=php]$thefile = "test.php" $fd = fopen ($thefile, "r"); while (!feof ($fd)) { $buffer = fgets($fd, 4096); $lines[] = $buffer; } fclose ($fd); //THE FIRST REFERENCE NUMBER INSIDE THE FILE SUBMITTED $TheFirstRecord=trim($lines[0]); $RefNum = explode("\t", $TheFirstRecord); //detect the TAB to explode[/code] then put every $Refnum[] array … | |
Re: [QUOTE=vidhyaponnusamy;842841]Hi, I want to create tree like menus in php,but the values will be retrieved from mysql,i want menus with submenus which means tree structure,i don't know how to display the mysql value in a menu tree structure,please help me out for this problem.[/QUOTE] try this: [url]http://www.weberdev.com/get_example-3433.html[/url] and this: [url]http://www.phpclasses.org/browse/package/4112.html[/url] | |
Re: [code=php] //PUT THIS ON TOP OF YOUR PAGE //END MY SESSION ON THE SINGLE PAGE session_start(); if(isset($_SESSION['expiredalready'])=="true"){ $gointtoifexpired=$_SESSION['returnurlifexpired']; echo "<script>alert(\"Session Expired! your previous ordered has been cancelled. Please exit your browser and try again!\")</script>"; die("<script language=\"JavaScript\"><!-- setTimeout(\"location.href = '$gointtoifexpired'\",1000); //--></script>"); } $numberofseconds = 600; //in seconds set_session($numberofseconds); function check_session() { … | |
Re: [code]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> <script> function album() { t = setTimeout("document.getElementById('pic').style.visibility = 'visible' ",5000); } function album_hide() { clearTimeout(t); } </script> </head> <body> <table> <tbody> <td> <?php $no = 1; while( $no < 6 ) { $pic = … | |
Re: [QUOTE=ryan311;840202]this is my code im using dreamweaver but i dont know how to add a data. . :( [code] <table width="98%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="75%" valign="top" class="body"> <table cellpadding="3" cellspacing="0" border="0" width="100%"> <tr> <td width="40%"> <b>Choose username:</b></td> <td> <input type="text" name="user" size="20" tabindex="1" maxlength="25" /> </td> </tr><tr> <td … | |
Re: are there any error message on your code? | |
Re: read this: [url]http://www.daniweb.com/forums/thread185568.html[/url] I have a typographical error change unto this $obj = new htmlMailer(); | |
Re: [QUOTE=navi17;842767][B][COLOR="Red"]Does anyone know how I can display a list of (let's say) 5 members that have visited my profile page recently? Shouldn't be too hard, should it? Let's try to find a solution, since I believe more users might be interested in such a feature. Thanks guys, navi[/COLOR][/B][/QUOTE] [url]http://sourceforge.net/projects/phploginsystemw/[/url] I … | |
Re: [QUOTE=rajeesh_rsn;843346]Hi i know php and mysql little bit. I likes to create a online chat application. Please any one give me a right tutorial or chatting idea . Please Help me Thanks Rajeesh[/QUOTE] try this... | |
Re: [QUOTE=usang2me;843454]I tried everything man, but could get through....and you know wat rilli piss'd me .....the same code n everything working fine on local....but not on Host...... is it becoz of windows & linux problem... coz m working on windows...n server is using Linux........ I'm sending you my whole code......please check … | |
Re: [QUOTE=jackal joe;842819]i'm developing a website for my final year project entitled [B]foreign workers booking system[/B]. Now i got several problems the problems are:- 1.How to come up with a dwi language website 2.How to make a private mail so that i can send a mail to an employer. 3.How to … | |
Re: friend next time create your own topic....do not use another users thread. | |
Re: [QUOTE=!Unreal;843330]I want to check if a key exists in a MySQL DB. I can do this ok but I would need to create a new key if it does exist. So this is the function that makes the key: [code=php] function keygen($a){ $b = str_shuffle('abcdefghijklmnopqrstuvwxyz1234567890'); return substr($b,0,$a); } [/code] So … | |
Re: [QUOTE=swit;842288]Hello people, i have the following code though it is not giving me the exact results i want. i would like the code to order by the name but the order by doesnt seem to be executed. here is the code; [code] $query2 = "select * from jos_categories where id … |
The End.