Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~17.9K People Reached
Favorite Tags
Member Avatar for nadiam

Hi guys. I have already installed fullcalendar successfully onto my webpage home.php <script type="text/javascript" src="js/fullcalendar.js"></script> <script type="text/javascript" src="js/fullcalendar.min.js"></script> <script> $(document).ready(function() { var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); $('#calendar').fullCalendar( { header: { left: 'prev,next today', center: 'title', right: 'month,basicWeek,basicDay' }, …

Member Avatar for Shilpi_1
0
13K
Member Avatar for harinagarjuna

Hello, I have created a dropdown lists using javascript dynamically. But i am not able to get the selected option values of that dropdown lists. could anyone please help.

Member Avatar for diafol
0
232
Member Avatar for RALTzzz

Can Someone help me to Create a program that receives a character and returns true if a character is a VOWEL and false otherwise.

Member Avatar for Avishek_1
0
215
Member Avatar for nadiam

hey guys. I have a form (very much simplified): <form method="post" action="add_contact.php"> <label>House No. :</label><input type="text" name="houseno" required /> <label>Street Name :</label><input type="text" name="street" required /> <lable>Spouse ?</lable><input type="radio" id="spouse-yes" onclick="FillSpouse(this.form)">Yes<input type="radio" id="spouse-no"> <label>House No. :</label><input type="text" name="spousehouseno" required /> <label>Street Name :</label><input type="text" name="spousestreet" required /> </form> what i …

Member Avatar for saqib_604
0
2K
Member Avatar for chocolatte.lavista_1

excuse me, do you know how to put a calendar in the form? I try to put this code in my form but it has an error on line 2. Anybody know? Please help me. Thank you This is the calendar code :- <?php $myCalendar = new tc_calendar("date5", true, false); …

Member Avatar for diafol
0
430
Member Avatar for nurul_1

hello, I have some problem with this code. Jacasript used in AJAX: var xmlHttp; function showUser(str) { xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Browser does not support HTTP Request"); return; } var url="getuser.php"; url=url+"?q="+str; url=url+"&sid="+Math.random(); xmlHttp.onreadystatechange=stateChanged; xmlHttp.open("GET",url,true); xmlHttp.send(null); } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { document.getElementById("txtHint").innerHTML=xmlHttp.responseText; } } function …

Member Avatar for nurul_1
0
425
Member Avatar for haze man

Hi there, I am working on a website design for a simple computer store. I have all the html code and php files that i want already made but I am having trouble putting it all together. The problem is adding the file together, for example i have a login …

Member Avatar for saqib_604
0
166
Member Avatar for saqib_604
Member Avatar for saqib_604

Hi! there is some problem in uploading file. some one help me and please make corrections in code. //// upload_form.html <html> <body> <form enctype="multipart/form-data" action="upload_file.php" method="POST"> <input type="hidden" name="MAX_FILE_SIZE" value="100000" /> Choose a file to upload: <input name="uploadedfile" type="file" /><br /> <input type="submit" value="Upload File" /> </form> </body> </html> ///////upload_file.php …

Member Avatar for tiggsy
-1
191
Member Avatar for KenyanRaphael

I've been teaching myself java using youtube videos of Starnford Engineering Everywhere. So far its been good, till the code started getting complicated and i got stuck. I need advice on how best to learn java.

Member Avatar for KenyanRaphael
0
217
Member Avatar for saqib_604

Hi! I want to know, how to calculate running time complexity of a given code or algorithm. some one please help me. code is given below. x = 0; for (a=1;a<=n;a=a*9) { for (b=1; b<=3n; b++) { for(c=0;c<n; c=c+5) { x++; } } } I think, there is for the …

Member Avatar for apines
0
294
Member Avatar for saqib_604

Aslam o Alikum, My name is Saqib. I want to use inline and external assembly code in my c# project. but I cannot understand the method. please tell me the syntax of using inline assembly code. Tell me that how can i use external assembly functions in files with the …

Member Avatar for saqib_604
0
97
Member Avatar for saqib_604

Aslam o Alikum to all, here is my code to get and change the attributes of a txt file. I want to change the hidden attribute of file. In this code, when i get attribute of file, the number 20 (100000) is returned in cx. I changed this number to …

Member Avatar for muslimgirl
0
297
Member Avatar for saqib_604

hy! I am writing an integer array class. but there is problem to return array from getter function. any one tell me the procedure of this task. And tell about extract operator for that class.[code]#include<iostream> using namespace std; class integer{ friend ostream& operator<<(ostream& output, const integer& num); private: int array[10]; …

Member Avatar for mrnutty
0
289