User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 370,579 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 1,966 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 165
Search took 0.02 seconds.
Posts Made By: lordx78
Forum: Java 2 Hours Ago
Replies: 3
Views: 77
Posted By lordx78
Re: Java IDE with GUI Maker

Thanks for all your advises.
Forum: Java 1 Day Ago
Replies: 4
Views: 74
Posted By lordx78
Re: Genetic Algorithm

Yes, I'm currently working on Pseudo-Code. Trying to optimize the Pseudo-codes.
Forum: Java 1 Day Ago
Replies: 3
Views: 77
Posted By lordx78
Java IDE with GUI Maker

Netbeans IDE
Eclipse IDE
IntelliJ IDEA

Which from the above the the BEST, USER FRIENDLY, COMPLETE IDE to use to design/create GUI for Java based programs. Please advise. Thanks.
Forum: Java 1 Day Ago
Replies: 4
Views: 74
Posted By lordx78
Re: Genetic Algorithm

I understood the Algorithm, just I don't really know how to apply it in Java. I never used Java before as all these while I'm with PHP. Thanks for your advise.
Forum: Java 1 Day Ago
Replies: 4
Views: 74
Posted By lordx78
Genetic Algorithm

I doing a project about Genetic Algorithm (GA). I'm looking for some book that shows GA in Java. Please advise.

Books
Websites
Journals
White Papers/ Publications
Forum: Java Apr 21st, 2008
Replies: 2
Views: 309
Posted By lordx78
Re: J2ME Compilation Error

Thanks for the suggestion, will give a try
Forum: Java Apr 20th, 2008
Replies: 2
Views: 309
Posted By lordx78
J2ME Compilation Error

package midp.firstAid;

import javax.microedition.lcdui.*;

public class AboutCopy extends Basic {

public AboutCopy()
{
super("About Product");
append("Copyright 2008\n " +
Forum: JavaScript / DHTML / AJAX Apr 20th, 2008
Replies: 2
Views: 574
Posted By lordx78
Re: if statement not working

Thanks for the advise, solved.
Forum: JavaScript / DHTML / AJAX Apr 18th, 2008
Replies: 2
Views: 574
Posted By lordx78
if statement not working

var cBrand = document.getElementById('cBrand');
var cType = document.getElementById('cType');
var cStyle = document.getElementById('cStyle');
var cFrame = document.getElementById('cFrame');
var...
Forum: JavaScript / DHTML / AJAX Apr 18th, 2008
Replies: 2
Views: 453
Posted By lordx78
Re: Validation

Thanks for your advise, will follow and update here soon.
Forum: JavaScript / DHTML / AJAX Apr 17th, 2008
Replies: 2
Views: 453
Posted By lordx78
Validation

Hi,

How to this type of validation using JavaScript?
Scenario
In my SEARCH page, user was given 5 types of field(drop-down menu) to choose from. User can select either 1, 2,3,4 or all the...
Forum: JavaScript / DHTML / AJAX Mar 24th, 2008
Replies: 4
Views: 1,241
Posted By lordx78
Re: Float value checking

can u help me to solve isFloat, pls.
Forum: JavaScript / DHTML / AJAX Mar 23rd, 2008
Replies: 4
Views: 1,241
Posted By lordx78
Help Float value checking

<html>
<head>
<script type="text/javascript">
function validateFloat()
{
var o = document.frmInput.txtInput;
switch (isFloat(o.value))
{
case true:
...
Forum: PHP Mar 13th, 2008
Replies: 4
Views: 286
Posted By lordx78
Re: Query syntax not working

no problem with the upper, managed to solve myself. Thank you very much for your reply.
Forum: MySQL Mar 13th, 2008
Replies: 2
Views: 379
Posted By lordx78
Re: Query syntax not working

managed to solve myself. Thank you very much for your reply.
Forum: MySQL Mar 13th, 2008
Replies: 2
Views: 379
Posted By lordx78
Help Query syntax not working

$result = mysql_query("SELECT * FROM cycles WHERE Upper(brand) LIKE '%$brandC%' AND type LIKE '%$typeC%'");


Above code is not working, pls help.
Forum: PHP Mar 13th, 2008
Replies: 4
Views: 286
Posted By lordx78
Question Query syntax not working

$result = mysql_query("SELECT * FROM cycles WHERE Upper(brand) LIKE '%$brandC%' AND type LIKE '%$typeC%'");


Above code not working, pls help.
Forum: PHP Mar 11th, 2008
Replies: 7
Views: 1,146
Posted By lordx78
Re: Session destroy not working....

* echo part in both codes was temporarily changed to save page.

the actual echo was;


<?php
//echo "You have been successfully logged out.
echo "
<html>
<head>
Forum: PHP Mar 11th, 2008
Replies: 7
Views: 1,146
Posted By lordx78
Question Session destroy not working....

auth.php

<?php

// start session
session_start();
// convert username and password from _POST or _SESSION
if($_POST){
$_SESSION['username']=$_POST['username'];
...
Forum: PHP Mar 8th, 2008
Replies: 3
Views: 225
Posted By lordx78
Re: echo statement

Thanks alot. solved
Forum: PHP Mar 8th, 2008
Replies: 3
Views: 225
Posted By lordx78
echo statement

echo "<td align=center style='width: 30px'><strong><a href='' . $link1 . '' style='color: red'>CID</a></strong></td>";


Is this part properly coded

<a href='' . $link1 . '' style='color: red'>


I...
Forum: PHP Mar 7th, 2008
Replies: 4
Views: 350
Posted By lordx78
Re: Error Checking Validation

Situation:

The auth.ph was placed on every single page of my except the index.html and logout.php. I want to access direct to an admin type page (e.g. localhost/cycle/addlist.php) it would prompt a...
Forum: PHP Mar 7th, 2008
Replies: 4
Views: 350
Posted By lordx78
Re: Error Checking Validation

Thanks buddylee17, the thing is, I'm calling this auth.php in every page, I've already tried the method you mentioned above, after you logged in successfully, The echo statements will be on every...
Forum: PHP Mar 7th, 2008
Replies: 4
Views: 350
Posted By lordx78
Help Error Checking Validation

<?php
// auth.php

// start session
session_start();

// convert username and password from _POST or _SESSION
if($_POST){
$_SESSION['username']=$_POST["username"];
...
Forum: PHP Mar 6th, 2008
Replies: 3
Views: 277
Posted By lordx78
Re: Loop not working

solved, thanks.
Forum: PHP Mar 6th, 2008
Replies: 3
Views: 573
Posted By lordx78
Re: PHP codes to search MySQL

Thanks all, solved. used both the codes.
Forum: PHP Mar 6th, 2008
Replies: 3
Views: 277
Posted By lordx78
Help Loop not working

<?php

// connect to database
include("inc/connect.php");

// include auth and nav
//include("inc/auth.php");

// begin content
//include("inc/nav.php");
Forum: PHP Mar 5th, 2008
Replies: 3
Views: 573
Posted By lordx78
Help PHP codes to search MySQL

I'm looking for some PHP scripts that be able to search into the Database and retrieve all the records that matches the user input string in the search form.

Please advise.
Forum: PHP Mar 5th, 2008
Replies: 11
Views: 628
Posted By lordx78
Re: Image in database

Thanks silviuks
Forum: PHP Mar 5th, 2008
Replies: 11
Views: 628
Posted By lordx78
Re: Image in database

<form enctype="multipart/form-data" action="uploader.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose a file to upload: <input name="uploadedfile" type="file"...
Forum: PHP Mar 5th, 2008
Replies: 11
Views: 628
Posted By lordx78
Re: Image in database

yes, I've read it but just a bit confusing. Anyhow thanks for your guide.
Forum: PHP Mar 5th, 2008
Replies: 11
Views: 628
Posted By lordx78
Re: Image in database

I've visited the given url. But one question....



How do I save it in the table. How does he path look like. Pls advise, still a bit blur on this part.
Forum: PHP Mar 4th, 2008
Replies: 11
Views: 628
Posted By lordx78
Re: Image in database

Can you show me an example of doing this process. thanks.
Forum: PHP Mar 4th, 2008
Replies: 11
Views: 628
Posted By lordx78
Question Image in database

I wanted to how do we upload an image path(url) into the MySql database and call it through PHP. Do we use the BLOB function, if yes, then how? I don't want to upload the image itself as it will...
Forum: PHP Mar 4th, 2008
Replies: 3
Views: 174
Posted By lordx78
Re: img not displayed

Thanks Naveen, anyway.
Forum: PHP Mar 4th, 2008
Replies: 3
Views: 174
Posted By lordx78
Forum: PHP Mar 4th, 2008
Replies: 3
Views: 174
Posted By lordx78
Help img not displayed

<?php
//echo "You have been successfully logged out.
echo "You have been Successfully logged out.<br><br>
<img src='../images/goodByeC2.png'/>
You will now be returned to the Main page. ";
?>


Why...
Forum: PHP Mar 4th, 2008
Replies: 7
Views: 273
Posted By lordx78
Re: 3 lines of code not working

Thanks guys, it solved.
Forum: MySQL Mar 4th, 2008
Replies: 3
Views: 264
Posted By lordx78
Forum: PHP Mar 4th, 2008
Replies: 7
Views: 273
Posted By lordx78
Re: 3 lines of code not working

I want to alternate the bg colours, row by row, any suggestion.
Showing results 1 to 40 of 165

 
All times are GMT -4. The time now is 5:28 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC