-
Began Watching php max_execution_time is not working
hi everyone, in my server, i am running a script thats uses curl heavily and it usually takes about 5 minutes to finish running. It used to wokr in my … -
Replied To a Post in php max_execution_time is not working
max_input_time can override max_execution_time but this was supposed to have been fixed in 5.3.1. What PHP version are you using? -
Began Watching How to find if the website was designed by responsive web design or not?
How to find if the website was designed by responsive web design or not?Is there any tool or shortcut ways to find that? -
Replied To a Post in How to find if the website was designed by responsive web design or not?
The use of @media queries in the html head would be a strong indicator and quick to check. Look for css files with names that suggest different sizes e.g. mobile.css … -
Began Watching order price from multiple tables
I have two tables with column name price I want to order by price from both columns so if is in first table 100eur and in second is 200eur I … -
Replied To a Post in order price from multiple tables
The way you have your query you will end up with two columns, a.price and b.price, per row so your second requirement of having table 2 values first then table … -
Began Watching C# application behaving weird on different computers
I've generated an application that uses images, the wheel of the mouse, a txt to obtain info and other things. On my computer and on others it runs flawlessly, but … -
Replied To a Post in C# application behaving weird on different computers
Out of curiosity, have you had any luck with this? I'd be interested to know what affected the mouse on another computer when you ran your program. As Ketsuekiame asked, … -
Replied To a Post in Can't get parts of CSS to load from external file
OK, as a test, can you alter the html property in the css file so the background image isn't a part of it, change the colour instead. That way we'll … -
Replied To a Post in print one by one
Can you count the size of the $row to make sure it equals the number of columns? At least then you'd know if the database is returning a complete result … -
Began Watching Cannot reach a foreign domain by email
We have an important business contact in China whom we have communicated with by email for years. As of the past few weeks, we cannot send an email to this … -
Replied To a Post in Cannot reach a foreign domain by email
I think you might have ended up on a email blacklist. Trying to locate which black list you are now on can be difficult. It will effect everyone using the … -
Replied To a Post in Can't get parts of CSS to load from external file
I doubt your image dir is inside your styles directory in that case. Change to `background: url(../images/ralnabg.jpg) no-repeat center center fixed;` You need the ../ to revert out of the … -
Replied To a Post in print one by one
`SELECT * FROM articles WHERE id='$id'` would have returned all columns in the articles table. Are the columns you mention part of that table or another one? Or could they … -
Replied To a Post in searching for a word in datagridview
OK, I would use a client side script to do the search and highlight because a postback to the server is unnecessary. You already have the data on the screen … -
Began Watching Good Day Everyone, Am new here :)
*Good Day Everyone*, My name is **Mustafa am from Iraq / 26 years old** i love computing / my specialty is Software Engineering. got my BSc degree in Software Engineering … -
Replied To a Post in Good Day Everyone, Am new here :)
Welcome and congrats on the MSc offer :) Glasgow is going to be a little bit wetter than Iraq me thinks. Is that why the umbrella in your profile pic? -
Replied To a Post in Foreign key constraint
[Nope]Forever, you seem to be getting an awful lot of page votes for your posts. I see you got 6 up votes for saying thank you in one thread, and … -
Replied To a Post in Get Data from two tables
Amost. If you use AS to rename (alias) a table you then use that alias in the rest of the statement. There is no point using AS s if you … -
Began Watching Login Form Connection-access 2007
Hy guys, Please assist in advcicing which toolbox connection controls to add in my form. I want to connect to access 2007 using vb.net 2005 and im struggling. I have … -
Replied To a Post in Login Form Connection-access 2007
Are you getting any errors when you run it and, if so, what are they? -
Began Watching searching for a word in datagridview
Hello, am on a project and I want the user to search for a word in datagridview. Am using vb.net 8 with access 2010 I want where the text is … -
Replied To a Post in searching for a word in datagridview
There is a very cool jQuery plugin that will do that for you. [Click Here](http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html) That will allow you to use client side scripting to get the user input and … -
Began Watching Help with grade calculation program
Please help, this is my first java class. I need help with how to do this assignment: Grade Calcualtion Program: write a program to calculate and display the course letter … -
Replied To a Post in Help with grade calculation program
Assignment time again... Very few of us want to do your homework for you. Seeing as this is a class you are taking you must have covered at least some … -
Replied To a Post in print one by one
You would have to look at caching the result set so it was available when the print button was clicked. Or you could get one result each time and when … -
Began Watching print one by one
hy i have question i have this code and i whant to print it one by one not all the page the script is <?php $qry=mysql_query("SELECT * FROM articles order … -
Replied To a Post in print one by one
I'm not sure I understand. Do you want to get the next record when the user requests it (from a button or link for example)? The WHILE loop is doing … -
Replied To a Post in Which section I should study in asp.net 4.0 from beginner to intermediate l
Typing 'C# interview questions' into google gives a lot of good responses. -
Stopped Watching As a beginner, what IDE should I use?
I only started learning Python a few days ago, so as a beginner, what IDE should I be using? Should I just start with IDLE, then move on to something … -
Began Watching jQuery $(document).ready()
With $(document).ready() does your entire javascript code go into this function? or just the functions that you want to run automatically when the page has loaded? Cheers -
Replied To a Post in jQuery $(document).ready()
You just call the functions you need to run on page load. The jQuery construct $(document).ready() fires when the page has finished loading so you only need to place calls … -
Replied To a Post in Get Data from two tables
select s.name, sa.artist from songs as s join songartist as sa on s.id = sa.sid where s.id = 10 That will return a row (containg song name and artist) for … -
Began Watching Set background image and background color - CSS
I have a div that has an image as its background. But the image only covers up about 80% of the screen. I want to make the extra 20% of … -
Replied To a Post in Set background image and background color - CSS
The background property is a shortcut to combine all background commands into one, as opposed to having a background-color and a background-image. So you are setting a background-color and then … -
Began Watching Can't get parts of CSS to load from external file
I'm working on implementing CSS on my site, and have a problem with using a background image. When I use the background image inline in the PHP file, as below: … -
Replied To a Post in Can't get parts of CSS to load from external file
May be obvious but need to ask: is your CSS file in the same directory? -
Began Watching Why is the integer unknown to the code?
var x = 0; var interval = setInterval(function() { alert("Loop iteration #" + x++); if(x==6) { var x = 0; } }, 500); This code prompts "#NaN" with each message, … -
Replied To a Post in Why is the integer unknown to the code?
Remove the var key word from line 5. You don't want to to be specifying a new version of X, just reset the existing x variable. -
Replied To a Post in New application program
The end result would be exactly the same with either of these languages(although I would prefer the look of win forms but that is jst personal choice). They are both … -
Began Watching Using Java WebService in ASP.net with WSDL
Hi, I got WSDL files and XSD files from our client. I have created a proxy with this wsdl and added in my projec. I got the result that i … -
Replied To a Post in Using Java WebService in ASP.net with WSDL
Well, telling us the detailed fault message would help. And the inner exception showed no error message? Are familiar with tools ike Fiddler? They can catch the response coming back … -
Began Watching Get Data from two tables
Hi All, As usual I here with a PHP & MySQL problem. Most of you know, I am developing Music Download system. Today I have created Widget to display last … -
Replied To a Post in Get Data from two tables
Use a JOIN to connect the two tables. For that to happen both tables need to share a common key that you can JOIN them ON. A sample JOIN looks … -
Began Watching Change Label text dynamically
Hi all, I need to change label text dynamically for two operations on webpage in asp.net. First,when file uploading is completed label should show 'upload completed'. After that it will … -
Replied To a Post in Change Label text dynamically
You need AJAX. A standard button click will process all server side code and then cause a postback to the page, meaning nothing will update until the process is complete. -
Began Watching Access Check
Hi All, I have developed php login system. If user successfully logged in system will create a session call, `$_SESSION['username'];` Now I want to redirect user, if not logged in … -
Replied To a Post in Access Check
The header command needs to be ran before any other output (read the docs on header) so if you have HTML tags, comments, etc, before that code segment it won't … -
Began Watching How to simplified accessing data from multiple tables
I have three tables i want to search for customer data depending on the equipment type. $test = "SELECT custid, equipment FROM customer WHERE custid='$id'"; $data = @mysqli_query ($dbcon, $test); … -
Replied To a Post in How to simplified accessing data from multiple tables
Looks to me like the IF statement only runs once, there is no looping through the returned records. So the first result = 'cellphone' and thats all you see.
The End.