52,566 Archived Topics
Remove Filter ![]() | |
Hi there, I'm wanting to display Tweets as blog posts in my website. I'm currently using a Wordpress plugin called Twitter Tools ([http://wordpress.org/extend/plugins/twitter-tools/](http://wordpress.org/extend/plugins/twitter-tools/)) to do this, and it works to an extent. So far I can get it to pull my tweet into the content of a post and publish … Web Development php social-media wordpress | |
Hello, I'm tring to develop a mysql news scroller for my website. The problem that i'm facing is that i need to have multiple mysql querys joing together beceuase i have multple categories like: select * from news where category LIKE '$cat1' order by id desc limit 1 select * … ![]() | |
hi all pls help me... im trying to display categories and its sub categories... but i dont know how to display subcategory.. ijust only know to display the category.. i created two tables in the database named tbl_category and tbl_subcategory in both table the field cat_id is common.... here is … Web Development php | |
i have created a contact form in which captcha is inplemented.the captcha value is stored in session.i am storing value of session in a hidden input field due to ajax.but when i reload the page the session value in hidden field comes ,old value.here is my form- <?php session_start(); ?> … | |
What kind of security measures I have to take to develop Core PHP and MySQL projects ? I used session and encruption, which are basics, there are any security technologies for Core or advanced PHP ? | |
Hello. i load data from a data.json file. each div named content shows contetn[i] from the json file. but i dont want all of this to be shown. i want only the the hovered div to be shown.but this code doesnt work.any help ? $.getJSON('data.json', function(data) { for (var i=0;i<18;i++) … Web Development javascript javascript-jquery json | |
<html> <head> <script> function change(x) { var str=x; <?php $name=?>str; } </script> <?php echo $name; </head> <body> <form> <select name="customers" onchange=change('this.value')> <option>Varma</option> <option>Phani Varma</option> <option>Prabhas Varma</option> <option>Kishore Varma</option> </select> </form> </body> </html> so when ever user change the select,the value should be passed to php & it must be echoed … Web Development php | |
What is the Congiguration manager class in the code and how do you set it in the Project or IDE? How do I set AppSettings in an ASPX project's Configuration manager? This is an ASPX/CS Project with Visual Studio 2010. It is a Configuration Manager question. I am successfully debugging … Web Development asp.net ide visual-studio | |
<html> <head> <script> function change(x) { var str=x; <?php $name=?>str; } </script> <?php echo $name; </head> <body> <form> <select name="customers" onchange=change('this.value')> <option>Varma</option> <option>Phani Varma</option> <option>Prabhas Varma</option> <option>Kishore Varma</option> </select> </form> </body> </html> so when ever user change the select,the value should be passed to php & it must be echoed … Web Development php | |
I just uploaded my current project on a free PHP hosting website and when i and my friend visited the website i got from PDO (MySQL) the error SQLSTATE[08004] [1040] Too many connections. I use a Singleton class to manage the PDO (so i create only 1 PDO instance to … Web Development php | |
![]() | I'm in the end stages of my program and everything is running fine, all i need to do now is create some data validation for my form. I've dabbled around and have figures out how to validate textboxes but am not sure how to validate my drop down boxes. So … Web Development javascript |
Hi, i am making a dynmic website and form text editor i want to add hindi font to the website in some section and other section it will be in english . Please guide me how to do that Web Development php | |
Hi, ive a piece of code which i have to modify so that the output is modified to appear as a table. The code is to do with buying songs etc, the output is Beatles Abbey Road Come Togeher Something Revolver Taxman Yellow Submarine Eleanor Rigby Oasis Be Here Now … ![]() | |
Hi, this question is related to http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/189876/populate-text-field-from-drop-down-list Discussions seems to be closed. First of all, thank yor Mr Airshow for the code. With some changes, I could greatly improve my project! Still a few months old in the computer field, but with lots of energy! This question is to whoever … Web Development javascript | |
I want to learn html and other webprograming .so how can improve my self in this arena? Web Development html-css | |
I have seen this in a few posts, but i still cant seem to find the problem. Im basically trying to log in to a chat page and don't know what I'm doing wrong. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <?php //Start a session session_start(); //Setup and use … | |
Hello, I want to delete a user from database and destroy the session after he has been idle for some time, lets say 5 mins. How can I do that ? For starters, how to check if the user is idle? I need it mainly for when a user closes … | |
Hi hope someone can help me with the following I am creating a webpage in different language with ip2country. i use the following code COMMON.PHP session_start(); header('Cache-control: private'); // IE 6 FIX header('Content-Type: text/html; charset=UTF-8'); if(isSet($_GET['lang'])) { $lang = $_GET['lang']; // register the session and set the cookie $_SESSION['lang'] = … | |
am looking for a php code that can link column of symptom checker like system n process data on that database....for example column one has symptom of a computer virus user selects, column two the choice he or she has selected then column three the possible attack or conddition...plis help … Web Development php | |
Here's a weird one... I have a toggle for a music file that plays when the site loads. There's a stop/play button on the page as well. On every browser, things work just fine. The music plays, the text says turn off/turn on just as it should. Except Ipad. When … Web Development audio html-css ipad javascript ![]() | |
I am trying to automatically resize the iframe to fit the content. Works great in chrome, firefox and opera. Fails in Internet Explorer. Ideas? <html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Leontinas</title> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> var framefenster = document.getElementsByTagName("iFrame"); var auto_resize_timer = window.setInterval("autoresize_frames()", 20); function autoresize_frames() { for … Web Development html-css javascript-jquery php | |
The programming page to view all the headlines and made the title link when pressed refer you to the details page, but unfortunately when the conversion page details are not shown to any details on the page <a style="color: red;" href="newspage.php?id=<?php echo $rows[0]?>"><?php echo $rows[1]?></a> the details page code ..... … Web Development php | |
<html> <body> <input type="text" name="cname" value="" onkeyup="shownames()"> </body> </html> Finally the thing is when ever user was input the text it should display the name from database dynamically. The user Should have capable to select the name generated from database. I'm Searching for jquery plugins if any one Knows Please … Web Development php | |
Hello, I have a datagridview, where I can edit only 1 field, howerver, I cannot type "4,556" because I restricted it to only number, and if I type 0345, or "0,345" it will just save it as 345. `<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("AMOUNT") %>' BackColor = "#FF960C" MaxLength="4" onChange="intOnly(this);" onKeyUp="intOnly(this);" … | |
Hi all i am working on asp.net web based application in this application i have to configure one setting from `web.config` file which is path of folder and i want to create that folser on the working directory of project so any body Please tell me can i use `Environment.CurrentDirectory` … Web Development asp.net | |
Hello. Here is the problem: JS $(".spinBox").css("display","block"); //.... $(".spinBox").css("display","none"); CSS: .spinBox {display:none; z-index:6; position:absolute; top:-45px; left:0; bottom:0; right:0; background:rgba(0,0,0,0.5); } .spinBox img {position:absolute; display:block; width:50px; height:50px; margin:auto; top:0; left:0; bottom:0; right:0;} HTML: <div class="spinBox"> <img id="spinImg" src="images/bg/spinner.png" alt="spinner" /> </div> All that works fine in webview in Gingerbread and Jelly … Web Development android android-development html-css | |
I have a piece of code: // trainer query $query = "INSERT INTO ".TBL_USERS." SET username = :username, password = :password, alliance = :alliance, avatar = :avatar, gender = :gender, usersalt = :usersalt, userid = 0, userlevel = $ulevel, email = :email, timestamp = $time, actkey = :token, ip = … Web Development php | |
My team has been doing Java for a long time. We are switching to Ruby. We are finding that Ruby has limitations and that we have to do certain things in Java. I'm trying to find a way to call Java code from Ruby. I'm searching Google and such, and … | |
![]() | Hi I'm not really sure why this isnt working. Could someone ammend the code so that it is working? cheers <html> <head> <meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org"> <title>Limerick Generator</title> <script type="text/javascript"> function display(f) {//code to get data from List boxes var DirectionSelect = … Web Development html-css javascript |
I have a form which is like a question paper. It has multiple text fields for entering a question and related information like marks allotted for that question, complexity level, tags in that question etc. I enter all this info into my db. **Tags are the keywords in that question**. … | |
## Hi i am trying to get gried view data from data base numericaly onfter another. For example first 5 data then another five (6 to 10) then again. I am trying this by clicking on link button but page can not be refresh..i get id from session in manual … | |
I have the follow code. And what I like to have, is, the value from the select1 in the 2. Form, input "girl" value. But I do not know, how to do... I always have an empty value in the 2. form. <?php mysql_connect("localhost:8888", "root", "root") or die("Connection Failed"); mysql_select_db("usr_web202_9")or … Web Development html-css javascript-jquery php | |
Hi there, I am not entirely sure how to target checkboxes with jquery. I had a look around but the methods indicated don't seem to work for me for whatever reason. Given the following html fragment: ... <form> <input type="checkbox" value="red" name="the_color" checked="checked" id="red"><label for="red">This is red</label><br> <input type="checkbox" value="blue" … Web Development javascript javascript-jquery ![]() | |
I have PHP page and i am trying user can update phone number when click on EDIT button. For that i created 1 button and when user click on EDIT the button changed to SAVE and now user enter phone number and press save button. Now user click save button … Web Development javascript php | |
I can't figure out why my nivo slider is not showing, the link to the jsbin is here http://jsbin.com/opucok/4/edit. I followed the directions in the nivo website exactly, and the slider works when it isn't with the rest of my html and css code. Web Development html-css javascript javascript-jquery | |
I have a list of columns of table that holds boolean values. consider a,b,c,d,e,f,g,h as column names with **YES** or **NO** values. I want to query and list column names whose value is YES. can some write a mysql query that can list the columns. if a column has an … | |
Hi hope someone can help me with the folowing How can i echo only the first letter of given words Example if i have: Jozef Margaretha Fransiscus i Want: J.M.F. Thanks Web Development php | |
Hallo, I am trynig to built a poll system. i want to place it in a div of a php file. So i created a form that takes all the data that needs from 2 txt files (questions, options etc). When the user votes the vote.php executes. vote.php <?php $poll_file … Web Development php | |
Hi I am new to programming. i have some doubts in JavaScript. I have Java language in my computer, can I develop the javascript in java language or Javascript has any language? Web Development javascript | |
This is my first time making a project about which I am a beginner I have created a process by which I think I can validate user if user type is guest who is a half registered user. This is my code for front end here the user will submit … Web Development asp.net | |
I am using codeigniter 2.1.2 and Bootstrap. I am opening a form in a modal window. The form is inside a div with id status. The form has a few input fields and an upload file field. I am trying to submit the form with ajaxForm. In my controller I … Web Development file-system javascript javascript-jquery php | |
LEt's say there a certain phone number format. If someone types the correct format,it shows ok,if not it shows an error. I have done this but it only checks after user moves to the next textfield (onblur action). is there something like 'onButtonPress' or something Web Development javascript | |
Hi, I would like to know which is THE BEST platform to develop a web application which will be used by a huge amount of users. Is it PHP or ASP.NET? I am giving more importance to the application performance and security. Thanks! | |
I need in a project to be multi language.Can we show the html result or website content in other language from english with the help of google translat api.and how to use it in project. Web Development api google google-api php | |
<html> <title>application</title> <style type= text/css> <!-- style1 font-family: Arial, Helvetica, sans-serif; color: =00000000; } --> </style> <head><script language="JavaScript">{ function upper( field ) { field.value = field.value.toUppercase(); } <!-- function validate() { var good = true; with( document.theForm ) { if( id.value =="") { alert("Please provide a student number combination of … Web Development html-css javascript | |
Hello, I need help on how to integrate the passing of information in XML format from ASP.Net(from client) to PHP(my server). I've been searching for solution but cannot find accurate results. A sample code is very much appreciated. Thank you. | |
i wanted to do a feedback or contact us page where user can give feedback and automatically will be sent to a specific admin (example@gmail.com).. i encounter this error..i dont know what to do.. Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and … Web Development php | |
Not able to drag down baloonpopup extender in ASP.NET It shows black circle with line. (not allowing to drag on form) but when i drag it on text box it work but when i run the page textbox diappears. please help and also tell how to use baloonpopup extender. Web Development asp asp.net javascript | |
Hello, I am trying to create a menu that slides up when a button is clicked. I looked at a lot of tutorials of animate and slide but nothing works for me. I hope someone can help. What I need is a button that says: Click for Menu and when … Web Development javascript javascript-jquery |
The End.