No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
17 Posted Topics
I am trying to get a database created as per html5 web sql specs. [CODE]h**p://www.w3.org/TR/webdatabase/#sql[/CODE] I am using jquery/javascript to accomplish this. Here is a bit of simplified problem that i am facing. 1. User enters two fields on a html form 2. In background, i create a websql database … | |
Re: yea.. im not going through that many lines of code mate.... tell us where the problem exactly is, and what is the error you are coming across... Make sure to remember that the data AFTER calculation is still the same format that the database expects. e.g. int is still an … ![]() | |
Hello everyone, I have got class system going on where object is created for each column in mysql table upon initialization of the class. This class contains one particular attribute($this->table) where i set my table name. This attribute helps in constructing a query when user press "add" to add stuff … | |
Re: perhaps.. you would like to tell us more about your project. Think at a deeper level rather than how you just described. You will know the answer(maybe yourself, if not we are here!) once you know exactly what you want your search form to do! regards | |
how can i REPLACE back slash in my string (file path) with forward slash. please help. str_replace doesnt seem to be working! | |
Ok, so i am using windows task sheduler to open the browser and run the php script file. Now, the problem is that i want to do it on the machine which doesnt have Apache (or any other web server ) installed. What is the best way to make sure … | |
Re: Change your line 17 so that it reads like...... form onsubmit="return validateFormOnSubmit(textBox1) && return validateFormOnSubmit(txtPassword);" method="post"> OR.... form onsubmit="return validateFormOnSubmit(textBox1) && validateFormOnSubmit(txtPassword);" method="post"> Something like that ought to work.... hope it helps | |
Anyone has any idea how i can look inside my arrays for diagonistics purposes. I am using tail.exe on vista currently for general debugging purposes. regards. | |
Here is an extracted code from my php file. Basically what i want to do now is put the results fetched while in a WHILE loop into an array, lets call it $array99. HOWW??? i am totally stumped here. Just so you can understand the logic of the program(its irrelevant … | |
Re: use code button please... i doubt you will get any replies considering the format of your post. good day | |
Re: hi there, dont know much about sqli stuff at the moment but a quick looksie at your code suggests that there is a problem with syntax. Try changing your line 10 so that it looks something like this.. [CODE]$username = mysqli_real_escape_string($link,$select).$_POST['username'];[/CODE] Do the same for line 11. Hopefully, you will … | |
Hi everyone, I am trying to figure out the way to check if the file ,that exists on a filestore, is also present in the database. Ultimately i want to flag up the files that exist in the database but are not on the filestore and vice versa. I have … | |
Hi everyone, i am going to be tackling creating pdf files using php on the fly... php would get information from the database and then create a pdf copy of the relevant info gathered. Now, first things first, i need to check if my php installation can accomplish the task. … | |
Hello and bonjour everyone I need a bit of hand-holding (pseudo-code) on how to go about accomplishing this task and will appreciate it if you could find 1 or 2 minutes to guide me through. Basically, i need to extract some information from database (different columns) and display it in … | |
Hi everyone, I am tasked to alter the front-end of the database and have been given the whole wad of PHP files and also an .SQL file. My question is, Why i cant see any changes to the database front-end when i change the .sql file. (I tried creating a … | |
Hi everyone, How do you think i could use one type of structure to define a range of shapes (like line, circle, rectangle, triangle). What things do they have in common and what special info i might need for some of them. How could i make a single drawing func … |