-
Replied To a Post in Unable to submit form after validation checks
You are using ajax to submit for data so do this: 1. Remove `action="Registration" method="POST"` from your form tag. 2. Change `type="submit"` to `type=buttom`. 3. Check your url again `url … -
Replied To a Post in Open Source Project Ideas
try [Ananse](https://github.com/Oteng/Ananse) it is an internet download manager i am working on -
Created Ananse an internet download manager project: Contributors needed
To download streaming videos on window is very easy after all there are so many softwares to do that for you but on linux it is not soo easy. There … -
Gave Reputation to cereal in Optimizing sql querys
Read this article: * http://www.xaprb.com/blog/2006/12/07/how-to-select-the-firstleastmax-row-per-group-in-sql/ Standing to the examples, you can try a query like this: set @num := 0, @type := ''; select site, cat, title, content, @num := … -
Marked Solved Status for How to get a set of data from a bigger set
Hi guys i have a table with this data ______________ | site | cat | ______________ | my | sp | | my | sp | | my | cc … -
Replied To a Post in How to get a set of data from a bigger set
Thanks guys i have solved it the answer which is in it self another question is posted [here](https://www.daniweb.com/web-development/databases/mysql/threads/483671/optimizing-sql-querys-#) -
Began Watching Optimizing sql querys
Hi guys i have an sql query string that in my view there is something wrong with it but i an handicaped since i am very new to sql so … -
Created Optimizing sql querys
Hi guys i have an sql query string that in my view there is something wrong with it but i an handicaped since i am very new to sql so … -
Replied To a Post in How to get a set of data from a bigger set
I think the problem is the way I designed my table it is all wrong thanks guys it feels good to have friends who will help if even they can't … -
Replied To a Post in Cloud Storage on Web Site
I think there is. most of these cloud services provide you with public url for accessing you file. so i think the way to go is manually generating these url … -
Stopped Watching A distributed encrypted email system your take on it
The whole idea is your email is stored on your local computer and that of your recipient's. This is how it works: first the user downloads and installs the email … -
Began Watching How to get a set of data from a bigger set
Hi guys i have a table with this data ______________ | site | cat | ______________ | my | sp | | my | sp | | my | cc … -
Edited How to get a set of data from a bigger set
Hi guys i have a table with this data ______________ | site | cat | ______________ | my | sp | | my | sp | | my | cc … -
Edited How to get a set of data from a bigger set
Hi guys i have a table with this data ______________ | site | cat | ______________ | my | sp | | my | sp | | my | cc … -
Created How to get a set of data from a bigger set
Hi guys i have a table with this data ______________ | site | cat | ______________ | my | sp | | my | sp | | my | cc … -
Replied To a Post in A distributed encrypted email system your take on it
The whole idea is given the sender power over his or her emails your emails are stored locally on your pc or device More over ur emails are encrypted OK … -
Replied To a Post in A distributed encrypted email system your take on it
It just dropped into my head when reading about diaspora project but now u mention it i will Search for it and see -
Began Watching Income Tax Calculator / JavaScript
Hello, I have read the requirements of this challenge and I have a good understanding of what needs to be done. I am confident that my program works but it … -
Replied To a Post in Income Tax Calculator / JavaScript
You have create the `calcTaxes` but you are not calling it. i think you should do it like this: var calculate_tax = function() { var total; var income = parseFloat( … -
Began Watching A distributed encrypted email system your take on it
The whole idea is your email is stored on your local computer and that of your recipient's. This is how it works: first the user downloads and installs the email … -
Created A distributed encrypted email system your take on it
The whole idea is your email is stored on your local computer and that of your recipient's. This is how it works: first the user downloads and installs the email … -
Created Extract <![CDATA[%s]]> from xml using SAX
Hi guys i am using sax to extract data from an xml file but i can't seem to discover how to extract <![CDATA[%s]]> from the xml below is the xml … -
Replied To a Post in just small calculationproblem in jquery it display NaN
first of all remove the '{}' at line 24 and 25 of the code since line 26 to 28 is part of the function calculatePtotal; here is the corrected code … -
Began Watching How to make logo clickable
Hello, how can i make this "Hscren.swf" clicable. Hscren is logo and i whant when you press click to make redirect in index like www.site.com. document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="712" height="172"> … -
Replied To a Post in How to make logo clickable
Surround the whole object with an a tag or since the logo is a flash object u can use actionscript to add a click event -
Began Watching just small calculationproblem in jquery it display NaN
hello daniweb friends i need help in my below calculation script all go right but just in the filed shippingtotal it display `NaN` i don't know why i tried the … -
Replied To a Post in just small calculationproblem in jquery it display NaN
U must remember that parseFLoat convert a string to a floating point number any thing else and it will return NaN [more on parseFloat ] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseFloat) at line 18 … -
Began Watching Question: Please Bear With Me, I'm Thinking Aloud
Hi, I finally figured out how to take a row from a table and display it on a page. Big deal, huh? That was not exactly my main goal, though. … -
Replied To a Post in Question: Please Bear With Me, I'm Thinking Aloud
As JorgeM said your best bet is to use session data. if the preson posting is a user them my advise to you is when a user login store a … -
Marked Solved Status for Return Not Working
var getDataFromUrl = function(url) { rest.get(url).on('complete',function(data) { if(data instanceof Error) { console.log("url error"); process.exit(1); }else {return data}; }); }; when this function (getDataFromUrl) is called by another function it return … -
Revoked Solved Status for Return Not Working
var getDataFromUrl = function(url) { rest.get(url).on('complete',function(data) { if(data instanceof Error) { console.log("url error"); process.exit(1); }else {return data}; }); }; when this function (getDataFromUrl) is called by another function it return … -
Marked Solved Status for Return Not Working
var getDataFromUrl = function(url) { rest.get(url).on('complete',function(data) { if(data instanceof Error) { console.log("url error"); process.exit(1); }else {return data}; }); }; when this function (getDataFromUrl) is called by another function it return … -
Replied To a Post in Return Not Working
this is the corret way the code should be var getDataFromUrl = function(url) { rest.get(url).on('complete',function(data) { if(data instanceof Error) { console.log("url error"); process.exit(1); } //data is return if data is … -
Replied To a Post in Toshiba Satellite Pro undiagnosed problem
Have you cleaned the laptop recently. I think it has to do with dust. Open the laptop and clean the fan also clean the heat sink. After that oil the … -
Began Watching A CMS using Nodejs Proposal
Hi guys Happy New year. I miss you all :), that is just by the way. I am thinking of building a CMS with nodejs ana i will like your … -
Created A CMS using Nodejs Proposal
Hi guys Happy New year. I miss you all :), that is just by the way. I am thinking of building a CMS with nodejs ana i will like your … -
Replied To a Post in Thoughts, Poetry and Much More...
@ddanbe you are bringing it again :) any way, i am sorry if my post created any problems forgive me. Poetry is about emotions and feelings. If love is all … -
Replied To a Post in Thoughts, Poetry and Much More...
Not be living in God (Jesus) or heaven is a consure effort but the fact is there is a God and there is heaven and we know this because our …
The End.