Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
14
Posts with Upvotes
13
Upvoting Members
13
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
~63.5K People Reached
Favorite Tags
Member Avatar for dcdruck

In all versions of Windows, there is the ability to press alt+tab to switch between application windows that are currently open. That's all fine and incredibly useful. The problem I have is how the ordering of these has changed since Windows XP. Let me explain... In Windows XP, when I …

Member Avatar for Pietro_1
0
240
Member Avatar for dcdruck

Hi, all. I'm having trouble getting audio over a DVI-to-HDMI connection out of my video card. The video card supports audio over DVI by way of a 2-pin cable connecting the S/PDIF header on the motherboard to the video card. The motherboard is an Asus P5N7A-VM. The video card is …

Member Avatar for dcdruck
0
792
Member Avatar for game4tress

I have the Ajax call listed bellow inside a jquery function, and the ajax call is not working. I've used "alert" to debug and its like the jquery function didn't even had the ajax call. Nothing inside it is processed, with no sucess and no errors. Isn't it possible to …

Member Avatar for dcdruck
0
454
Member Avatar for McLaren

//$('tr[id^=system_type_] input').live('change', function() { $('tr[id^=system_type_] input').on('change', function() { alert('a'); console.log($(this).val()); }); its not the first time, but I read that live is deprecated so I want to use on. But why it does not work in this code?

Member Avatar for paulkd
0
148
Member Avatar for l.worboyz

I need help reducing my JavaScript code down to between 4 - 7 lines of code. The idea of this program is to include the number 1-9 in a 3x3 table. I have included both my JavaScript code and the HTML code that creates the table. The javascript code that …

Member Avatar for JorgeM
0
2K
Member Avatar for George_91

I'm creating a website which requires a Login. When it logs in the system it creates a Session. But I don't know how to validate my next page. Because if the user types the name of the second page in the browser, it enters without problem. What I want is …

Member Avatar for Webville312
1
23K
Member Avatar for daniel36

I am first time using like in mysql .but it is giving error.my query with like is $user_query="SELECT * FROM rt_user WHERE rt_user_username LIKE %".$_GET['term']."% OR rt_user_name LIKE %".$_GET['term']."% OR rt_user_description LIKE %".$_GET['term']."% LIMIT 10"; it is giving syntax error.

Member Avatar for dcdruck
0
184
Member Avatar for Vijaysurya

Hai everybody, <div class="whatever styledark myclass"></div> I'm interested in the search-add class. This can be search-cancel, search-remove I want to get this class name when i click on the div, how i do i change this class name to other classes in the div. onclick success remove class seaech-cancel and …

Member Avatar for dcdruck
0
150
Member Avatar for dcdruck

I noticed something today about Arrays in JavaScript that struck me as a bit odd. I imagine there is an easy explanation that will make perfect sense when I hear it, but until then I thought I would ask the community. If I use an Array as the sole component …

Member Avatar for dcdruck
0
137
Member Avatar for vishalonne

Hi I just wan to to pass the value of Input Type File html tag to a 2nd PHP page where I will insert the image in mysql but I am always getting a notice and isset() is not getting the $_FILE('IMAGE'). Here is the notice - `Notice: Undefined index: …

Member Avatar for vishalonne
0
1K
Member Avatar for Asan23

i am having a problem getting my js file to work with my html file here is my jsfile function calculateTotal () { var hours = document.getElementByName("hours")[0].value; alert(please enter a number) var payrate = document.getElementByName("payrate")[0].value; alert(please enter a number) var pay = document.getElementByName("pay")[0].value; if (hours <= 40){ pay = (hours …

Member Avatar for dcdruck
0
148
Member Avatar for Eggstraordinary

I'm trying to clear a value in a textbox whenever i click the clear button. But i keep on getting a syntax error expected "=" in the line document.getElementByid. Is my code wrong? <?php function clear(){ document.getElementByid('textinput').value=""; } if (isset($_POST['textinput'])){ echo $_POST['textinput']; } if (isset($_POST['clear'])){ clear(); } ?> <form action="index.php" …

Member Avatar for Eggstraordinary
0
287
Member Avatar for adishardis

Hi, I'm trying to format an array like this: `[['Apr,2012', 5],['May,2012',10],['Jun,2012',20],['Jul,2012', 13]]` from this: while ($row = mysql_fetch_assoc($result)) { $dates[] = date("M,Y", strtotime($row["Datum"])); $data[] = $row["forsta"]; } But I don't know how to combine them in the right format?! Any hints on how to accomplish this? /Adam

Member Avatar for adishardis
0
110
Member Avatar for davidp994

hi, I am generating records through php/sql, as u can see the code displays 5 records, what Im trying to do is program so that when the next button is pressed the next 5 records will show?? any help much appreciated thank you, the code - function show(qstring,qtype){ $("#vsdiv").show(); var …

Member Avatar for dcdruck
0
139
Member Avatar for rotten69

Hi there, I have been trying to fix the problem in the below code for a long time, it did work for me at some point. Then, it suddenly stopped storing user's details in a session. $user = $_POST['username']; $pass = $_POST['password']; $query = "SELECT username, password FROM USERS WHERE …

Member Avatar for diafol
0
209
Member Avatar for Goldfinch

Hi, I've been having trouble with a form script that sends an e-mail but doesn't format the information correctly: $formcontent="VISITOR NAME: $name\\n\\nFEEDBACK: $message"; $recipient = "facadmin@frontandcover.com"; $subject = "Contact Form"; $mailheader = "From: $email\\r\\n"; $mailheader .= "Reply-To: $email\\r\\n"; $mailheader .= "MIME-Version: 1.0\\r\\n"; if(strlen($message)>0){ mail($recipient, $subject, $formcontent, $mailheader) or die("Failure!"); echo …

Member Avatar for Goldfinch
0
199
Member Avatar for jacob21

Hi, i am inserting data from CSV file in mysql. I am trying to skip ist row of CSV file as it contains headings. need suggestions??

Member Avatar for pritaeas
0
202
Member Avatar for iblend

I have a form that populates the country field dynamically using AJAX: http://interactiveblend.com/ajax/dynamic.html As you can see, this drop down is too long and runs off the bottom of the page. When I hard code the select list, it looks fine - http://interactiveblend.com/ajax/static.html Any idea on how to make the …

Member Avatar for GliderPilot
1
181
Member Avatar for beckele

I have a wireless access point. I can connect to it just fine. I can go to Google and I can type in a search, however I cannot GO to the searches result links at all. I've tried IE and Firefox and both the same. I can search for something …

Member Avatar for beckele
0
195
Member Avatar for ben.matthews18

Hi, i'm having a problem with the 'margin-top' property. Here's my current html and css - **HTML -** <div id="nav"> <div id="navwrap"> <ul> <li><a href="index.php"><img src="images/frame/homebtn.gif" width="63" height="20" /></a></li>  <li><a href="portfolio.php"><img src="images/frame/portfoliobtn.gif" width="93" height="20" /></a></li>  <li><a href="contact.php"><img src="images/frame/contactbtn.gif" width="84" height="20" /></a></li> </ul> </div> </div> **CSS -** #nav{ width:100%; height:70px; background-image:url(../images/frame/nav_1.gif); …

Member Avatar for dcdruck
0
108
Member Avatar for Octet

I am trying to validate a form for my website, at the moment the problem is it shall skip over the JavaScript bit entirely and go straight to the PHP side of it. This is my HTML Form: <form name = "Contact" action = "/PHP/UserActions/Contact.php" onsubmit = "return validateForm()" method …

Member Avatar for Octet
0
294
Member Avatar for aparnesh

I am trying to create a drop down menu using UL and LI elements. Each LI is an image (of same size) and there are no Bullets in the List. In IE, the list Items are left-aligned as I want them. In Chrome the list Items are right aligned with …

Member Avatar for aparnesh
0
385
Member Avatar for vyrenmedia

Hell all, am new here and am an intermediate php developer. I am having a silly proble am guessing the solution will be a simple syntax buh i dont know how to fix it. Okay here is it.. Lets say i have a variable in php eg $first_data=""; now i …

Member Avatar for junior_rosul
0
132
Member Avatar for shadiadiph

Sorry I have been searching for hours and hours now been looking for a way to gzip a file in javascript client side so i can then upload it and unzip it server side. You may ask why not just zip it normally? This is for my users and most …

Member Avatar for dcdruck
0
1K
Member Avatar for Octet

Hello DaniWeb, I've finally gotten around to swapping from MySQL to MySQL(i), mainly due to it's security advantages with Prepared Statements. In the past I've been adding `include ('/Some/Directory/File.php);` to the top of each page, so that I can store my functions in a secure directory and so that I …

Member Avatar for Octet
0
254
Member Avatar for professor123

how can you use the **HISTORY** command in **UNIX** or is there an **Alternative command** to view your previous unix commands.

Member Avatar for rubberman
0
262
Member Avatar for HibaPro

hey everybody i need an answer of this question plz as soon as possible , write a method named season that takes two integers as parameters representing a month and day and that returns a string indicating the season for that month and day. Assume that months are specified as …

Member Avatar for HibaPro
-1
93
Member Avatar for Ancient Dragon

When I want to copy all the code into the clipboard all I do is double-click then copy. That works ok. But what if all I want is a few lines of the code to paste into an existing program? There is no way to do it because when I …

Member Avatar for Ancient Dragon
0
129
Member Avatar for jazz.lee.794

hallo how to reset hdd password?? when i open laptop,want to password.. i forget this password. my laptop acer

Member Avatar for JorgeM
0
85
Member Avatar for eburlea

Hi. I have a javascript code inserted before closing tag </body> that is meant to change the color of a table row when the mouse is placed over it. It works only when I remove the css file. Please advise what is the problem, I need them working together. The …

Member Avatar for eburlea
0
216