- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 7
- Upvoting Members
- 7
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Just a simple person.
- PC Specs
- Microsoft Windows 7 Q9400 Core 2 Quad 2.66 4Gb RAM 1Gb Nvidia GTS 450 160Gb + 320Gb Sata HDD
66 Posted Topics
Re: [QUOTE=atullalit91;1220112]I am working on a website which has English and Hindi both versions. Firstly tell me the way to create site in Hindi-- in that i also need the information about which Hindi font will support the internet explorer. Thanks in advance dear.[/QUOTE] Hi atullalit91 I think the best solution … | |
Re: I think XP is old and people should start upgrading to a newer version of windows/mac or linux. | |
Re: [QUOTE=JerieLsky;986744]Hi [B]ryuslash[/B], this is a part of the php.ini file which is in the SMTP section: i think this is what you were referring to, so what am i going to edit in there? the php.ini file is actually a text file.[/QUOTE] i suggest you install a mail server first. … | |
Re: Here's what i think. A software engineer - is a position. A software engineer can be a tester or a programmer. A programmer - is a role. Like in our company, my position in my company is a software engineer and my role is a programmer. | |
Re: Try creating a page with all divs in it. then use the code below to create the transition using mootools framework [code] Fx.Scroll(window, {duration: 1000, wait: false, transition: Fx.Transitions.quadInOut}) [/code] | |
Re: Maybe you could add the click event on every data on the cell. cheers | |
Re: Hi, select does not have a value field. This should help if you'll add a ID attribute for your select tag. [code] var InitialFunctionJS= document.getElementById("InitialFunction").options[document.getElementById("InitialFunction").selectedIndex].value; [/code] | |
Re: Hi, this could help you get started. [url]http://adimageloader.codeplex.com/[/url] | |
Re: But it isn't sending a request to the server that's why it isn't working. you should use ajax so that it could send data to the server. something like this.. [url]http://www.javascriptkit.com/dhtmltutors/ajaxgetpost.shtml[/url] | |
Re: Just follow the instruction on the link you provided. You only need a driver to connect postgre to java. | |
Re: i cant see the image but you could use styles on your iframe. ![]() | |
Re: Maybe in the database your using. The TIME and DATE are reserved keywords that you should escape first. for sql, [TIME],[DATE]. For mysql, `TIME`,`DATE` | |
Re: You shouldn't be accessing the file itself. You should access the servlet on how you access it on your browser. It should be something like [url]http://localhost/site/ShowParameters?[/url] I hope you get the point. | |
Re: Google helps :) [url]http://aspalliance.com/259[/url] | |
Re: You can either create a JAR file or you could just create a simple c or vb program that will invoke the command on the command prompt for executing a java program [code] -java className [/code] | |
Re: It is still a server side code. The users won't see it if they view source. | |
Re: Or if you're referring to javascript. [code] var firstname =(document.registration_form.FirstName.value.replace(" ","")); if (firstname == '') { alert('Please fill in your first name!'); return false; } [/code] | |
Re: Does your query work when you try it on your query builder? | |
Re: Whatever you choose, you won't be making a bad choice. It depends on your preference. | |
Re: You only need one database, maybe you'll be needing a Application Server. You'll need to identify the architecture that you'll be using. So many things to consider specially that it is an enterprise system. | |
Re: Maybe this page could get you started. [url]http://php.about.com/od/phpwithmysql/ss/php_pagination.htm[/url] Just try replacing the query to search query [code] select * from table where username like '%$query' [/code] Hope you get the point. :) | |
Re: Maybe you could post your code first. | |
Re: i know netbeans has javascript built in editor and a debugger. | |
Re: DHTML is not an outdated word. As long as you use xHTML, JS, CSS it is DHTML. | |
I am trying to make a website that uses fopen to open up text file. Something like this [url]http://somesite.com/readarticle.php?name=sample.txt[/url] [code]<?php $file = 'sample.txt'; $f = fopen($file, r); while ( $line = fgets($f, 1000) ) { print $line; } ?>[/code] The sample.txt is located on the web server, I was able … | |
Re: Hi reaper974 Could it be that you installed some new applications that is not Windows 7 compatible? Regards, Al | |
Re: Hi, Here's another option, try using cron jobs. [CODE]find /yourdir/tmp -mtime +1-exec rm {}[/CODE] 1 is the xx days. Regards, Al | |
Re: Hi First you must have a valid date field in your table structure. [code] SELECT venue FROM tablename WHERE date_column = curdate() [/code] | |
![]() | Re: Hi kirtan_thakkar, There's nothing wrong with your code. The reason your getting all folder1 is that there is also 3 items on your array. And its randomized, so maybe "0" today could have been your lucky number. :) Tip: Keep refreshing the page and let's see it doesn't change. Regards, … |
Re: Hi Williwm1 I have this issue before on Windows Vista 64 bit. I was able to solve the issues when I put extra cooling solution to my processor. You could check your processors temperature using [URL="http://www.almico.com/speedfan.php"]speedfan[/URL] Regards, Al | |
Re: Hi normallen Try restoring from previous state using windows restore. That should help if it was caused by an update. Regards, Al | |
Re: Hi You wanted to validate emails from a database then update there status? Am I correct? Regards | |
Re: So your doing this offline? If you don't have a mail server then you won't be able to use SMTP. ![]() | |
Re: What errors are you getting? Try using this [CODE] string[,] aResults = new string[Matches[0].Groups.Count + 1, Matches.Count + 1]; [/CODE] Didn't test it, but it could point you to the right direction Regards | |
Re: Yes please, make those cookies and set those sessions :) | |
Re: Hi, You could add this where clause in your query [CODE] WHERE date <= curdate() AND date >= DATE_SUB(curdate(), INTERVAL 7 day) [/CODE] Regards, Al | |
Re: Hi 1. How likely is it that a non-CSS capable browser will access the site? [B]Very unlikely! because almost all browsers supports CSS.[/B] But with lynx? i haven't had a visitor using the browser in my website. So i don't know if there are people using this. :) 2.Is it … | |
![]() | Re: Hi, Do you have naming conventions for this text files? Regards, Al ![]() |
Re: I think you should work on that. Or you could pay to do the work for you. | |
Re: Hi Try using this regular expression to validate your email. [CODE] ^[a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z] [/CODE] and for the rest? try posting the specific validations that arent working. Regards | |
Re: Hi Those we're installed on purpose, if you'd remove one of them chances are some application might not work after that. Regards Al | |
Re: [QUOTE=smvec;988943]im a newbie php developer... i've tried sending an email n receiving the confirmation back for activating the users... here is the email sending code : [CODE]if($res) { echo "record added"; $to = $mail; $sub = "Confirm Mail From LeLys"; $header = "from: admin<support@domain.org>"; $message = "confirm link \r\n"; $message.= … | |
Re: [QUOTE=EpicDewd;984754]Hi everyone. I have a php mysql class and was wondering how I declare a varialbe kinda thing. Here is the code in the mysql class.... [code] <?php // class stuff public function fetch_array_from_query($query) { $this->debug_write("Fetching array from given query"); if(!$this->is_connected()) $this->setup_connection(); $result = $this->query($query); $this->debug_write("Finished fetching array from given … | |
Re: this should help you [code] <?php /* * * MARCO VOEGELI 31.12.2005 * www.voegeli.li * * This class provides one central database-connection for * al your php applications. Define only once your connection * settings and use it in all your applications. * * */ class Database { // Class … | |
Re: [QUOTE=JerieLsky;986394]Hi guys, i don't know what 's causing this php error: Need help. This problem actually occured when i clicked the submit button from a certain form. Thanks in advance.[/QUOTE] Where is the /Duplicate of Edited Site/ located? can we view the code that actually submits the data? | |
Re: you should have check first if the fields are not empty? [code] <?php // you should check if this fields are empty if($_POST['name']=="" || $_POST['email']=="" || $_POST['question']=="") { echo "Sending failed, please input the required fields."; }else{ $name = $_POST['name']; $email = $_POST['email']; $question = $_POST['question']; $message = "Message from … | |
Re: or you could use [URL="http://www.google.com/cse/?v"]Google Custom Search[/URL] | |
Re: [QUOTE=DealthRune;984689]When I use my php, and code it and such, for some reason when I use '<?' my php doesn't work. And I need it to go like that because I download a lot of scripts other people made and most of them don't use '<?php'. Can anyone help??[/QUOTE] on … | |
Re: hope this helps [url]http://www.texelate.co.uk/blog/send-email-attachment-with-php/[/url] |
The End.