354 Posted Topics
Re: you can store that object in data base. and later you can retrive it. why actually you want to do that ? | |
Re: Hi, you cant have two submit button on one form, do one thing: have two simple button< input type="button" value="delete"......> and have on hidden field in form with name "task".On onclick event of these button call a function where you set the value of task="delete" or whatever you want, after … | |
Re: use [URL="http://msdn2.microsoft.com/en-us/library/ms173463.aspx"]CREATE USER[/URL] | |
Re: images are like binary data, why you want to varify that, you just varify user.....is tahat your question, or you need to elaborate it more ? | |
Re: hi use javaScript as follows: <a href="#" onmouseover="javascript:fun1();" onmouseout="javascript:fun2()">Links</a> where inside fun1() put document.getElementById("div_p").style.display="block"; and inside fun2() put document.getElementById("div_p").style.display="none"; where div_p is id of "popup" tag .....i hope it solves your problem. if you find to do something like this in IE also plz put here... have a nice time … | |
Re: Hi, You will be maintaining data base for each post, along with data base right?? take data from there and while generating the page dynamically put the author name along with post in a div or span tag........ is this thing you were asking ??? | |
Re: Hi, control panel ->>add or remove program->>add or remove windows component... here you can see what are the windows component you have installed and you can also install here but i dont know it will show server or not. | |
Re: can you post that portion of code ? | |
Re: u can save file in data base as binary data type. | |
Re: Considering your experiance, i think you will be asset to any company looking for c, c++ programmer. Best of Luck !!! | |
Re: Hi, using window.opener you can refer to the window which has created the popup window. on a particular event use window.opener to refer parent, in popup window. use window.opener.location.reload() to reload the document of parent !!! | |
Re: Hi, Can you please describe your problem properly ? It will help every one to understand your problem. | |
Re: hi make a link list of pageinfo having following as node Node{ TimeStamp t; PtrToPage ptr; } now on the basis of this u can implement various available page replacement policy. some are here: [url]http://en.wikipedia.org/wiki/Page_replacement_algorithm[/url] [url]http://www.sci.csuhayward.edu/~billard/cs4560/node15.html[/url] | |
Re: window.event is supported only in IE not in other browsers. I guess you'll be calling some function on mouseover to the "Admission" just post that code. | |
Re: hi, Post your html code also or atleast describe what is prodsearch, and other var used in javaScript. One more important thing, dont rely upon javaScript alone for validation, write server side equivalent code for that, as any one can alter your JavaScript code and send wrong info to server. | |
Re: you can do that using dom apis. just use- var new_elem = document.createElement('tag_name'); var elem=document.getElementById("id"); elem.appendChild(new_elem); this is just a [URL="http://www.w3schools.com/dom/dom_element.asp"]pointer[/URL] !!! | |
Re: for that you need to use server side scripting. after submission form will be sent to server, from there a mail will be generated to you. | |
Re: chances about what? if you want to become a software professional then B.Tech. will be a good option. | |
Re: hi use div element, and define following style: [code] filter:alpha(opacity=50); -moz-opacity:0.5; opacity:0.5; -khtml-opacity:0.5; [/code] these property is to set opacity. see ex: [code='html'] <html> <head> <style> .opec{ background-color:blue; filter:alpha(opacity=50); -moz-opacity:0.5; opacity:0.5; -khtml-opacity:0.5; position:absolute; color:red; height:50; width:50; left:2; top:5; } </style> </head> <body> hi this is in body <div class="opec"> hi … | |
Re: you can get rid of this problem using ajax. if you are using ExtJS in your application, use it for ajax, or you can write your own function to handle ajax. basically in ajax you will send and receive data without refreshing the page. so your page will not reload. | |
Re: Hi, its working fine in IE and opera, just check again. [code] <select size="1" style="width:50px"> <option>1</option> <option>2</option> </select> <div style="width:50px;background-color:red"> hi </div> [/code] above code will show that red div and combo is of same width, check if they are of same width or not, may be you are missing … | |
Re: [code] <html> <head> <script> function sendMail() { var mailId="you@yourmail.com"; var subject="subject you want"; var cc="cc@other.com"; parent.location="mailto:"+mailId+"?subject="+subject+"&cc="+cc; } </script> </head> <body> <a href="javascript:sendMail()">mail someone</a> </body> </html> [/code] above code will open the default email client of the user (e.g. Outlook Express, etc.). as hunkychop^ said, it will be good idea to … | |
Re: hi this is because $result doesnot contain resource. after $result = mysql_query($query); put following code [code] if (!$result) { die('Invalid query: ' . mysql_error()); } [/code] it will not allow further execution if $result is null. if it is so check you $query string by echoing it. | |
Re: you can't call php function directly from java script, instead use ajax to call a file say abc.php which will call specific function. | |
Re: you can use combo box for month, date and year. based on the month selected it will fill the date box. | |
Re: Hi, what's your question ? if you want to put code snippets for others, to help, please go [URL="http://www.daniweb.com/code/forum31.html"]here[/URL] | |
Re: [QUOTE]I have red X on my[/QUOTE] what is this ? is it file ? if it is file, search them with file name of size or creation date, then delete them. if you are not able to delete them see the attribute of file and post here . Hope this … | |
Re: [QUOTE]learn to write virus and so on.[/QUOTE] dont use your skill for destructive purpose !!! use it for some development ! you can find some open source project on net, try to participate on them | |
Re: you can do this by two way: -using server side scripting. for this you need to know one Server side scripting language like PHP, ASP etc. and need to have web server install on your machine. -using javaScript. for this yon dont need above things but you will not be … | |
| |
Re: is it showing that behaviour on regular basis ? I also get same problem but there was some power cable problem, it was loose, my system started showing that behavior suddenly after 2 year. It may be the problem with internal battery also. | |
Re: which country do you belong to? it will help people here to figure out solution for you, as each country has got its own education system if you have time then go for bachlor degree in computer science it will be nice option. | |
Re: Hi try this: -let an input element is haveing name='name' and id='id' -get the element by var elem=document.form1.name if form1 is name of form or var elem=document.getElementById('id'); -after that check elem.value.lenght is 0 or what -on the basis of above you can check other input element also -use good logic … | |
Re: Hi use onmousemove event on textarea [COLOR="Red"]element[/COLOR]. There you get [COLOR="#ff0000"]event[/COLOR] object and its clientX and clientY property will give you the x and y co-ordinate of cursor current position. | |
Re: hi try this example: suppose you want following to be done: []record1 []record2 here [] is check box then do following to get above: 1.suppose you have two variable $rec1 and $rec2 which contains data to be printed along with check box, $rec1="record1" ; $rec2="record2"; 2.prepare a $rspString like following: … | |
Re: i guess another programme is using port 80. did you install any thing before some day? try some software to know whether 80 is free or not. | |
Re: Hi try this: [url]http://www.cut-the-knot.org/Curriculum/Combinatorics/JohnsonTrotter.shtml[/url] [url]http://www.merriampark.com/perm.htm[/url] [url]http://home.att.net/~srschmitt/script_permutations.html[/url] | |
Re: i think [URL="http://whois.org/"]this[/URL] is what you are searching for. | |
Re: [QUOTE]var fd="field_0";[/QUOTE] here fd is a variable having value "field_0" [QUOTE]var a=document.form1.field_0.value;[/QUOTE] here field_0 is an object inside form1. so you cant do what you want to do ? any way why actually you want this to be done ? you can try alternatives like getElementById(); hope this helps !!! | |
Re: hi with each ajax request when you are filling your dropdown you also create hidden value node using dom apis. use api -document.creatElement('tag_name'); to create tag -document.getElementById('idofparent'); to get parent element where hidden will reside -parent.appendChild(child_node); to add child hidden node to parent. | |
Re: Hi this are the step you should follow: -store user name and password in a data base. -at client side get the user name and password from user and send it to server side. -at server side check the password against user name using data(password) stored in the database. try … | |
Re: Hi For you some suggestion: -Its nice to use editor try notepad++, its realy nice -Learn HTML, CSS, JavaScript and any one server side scripting language. -see tutorials in daniweb. -see w3school, its nice. -its better if you read some basic book for mentioned subjects. Hope this will help you. | |
Re: [QUOTE](trg = random(placearray.length); saying "object expected". can anyone point out my problem here?[/QUOTE] it[URL="http://www.w3schools.com/jsref/jsref_obj_math.asp"] Math.random()[/URL] | |
Re: use the css style to do so. set width and height property of body tag or put all the thing in a container (div) and set width and height property of container. | |
Re: have a look on this. probably [URL="http://www.code-magazine.com/Article.aspx?quickid=0703042"]this[/URL] will help you. | |
Re: hi probably [URL="http://www.howtocreate.co.uk/tutorials/testMenu.html"]this[/URL] will help you. | |
Re: Hi Certifications depends on which technology you will prefer to work. If you want to work in .Net or any microsoft technology go for [URL="http://www.microsoft.com/learning/mcp/default.mspx"]Microsoft certification[/URL]. If you are interested in Java then go for any [URL="http://www.sun.com/training/certification/java/index.xml"]Java Certification[/URL] Basically it all depends on your interest. Ofcourse your experience will also … | |
Re: [QUOTE]Multiple items with the same id problem (edit-in-place) [/QUOTE] this is your heading but you are telling you are using PHP. id is used at client side programming. so what is actually your problem ???? what you want to do in PHP ?? your exact problem definition will help us … |
The End.