October 6th, 2008, 01:54 AM
I need a parser that takes in a boolean function. How do I do it? It should also implement parentheses(of course). How do I do this? :|
October 5th, 2008, 01:39 AM
Try the Aptana plugin for Eclipse and you'll see.
October 4th, 2008, 09:23 PM
If it's false, it tries to send it back to the form with the error message attached. It also sends back the values that were filled in.
while (list ($key, $val) = each ($_POST)) $pd .=...
October 4th, 2008, 08:33 AM
What specific problem? :|
October 4th, 2008, 03:14 AM
I need a regex expression that verifies if a user inputs a valid name (letters and spaces only). However, it doesn't budge.
<?php
function validateInputs(){
$status_form = "OK";...
September 25th, 2008, 08:54 AM
oh. okie. thanks. :D:D
The form method in the client would be GET, right? :D
September 24th, 2008, 11:25 AM
September 24th, 2008, 11:20 AM
I do not know where to start. And by start, I mean an implementation of what to do next. I already have some readings on PHP, and I need to start on this project... for the lulz.
Now where oh...
September 17th, 2008, 08:01 AM
import java.awt.*; import javax.swing.*;
import java.util.*; import java.awt.event.*;
import javax.swing.event.*;
public class JTetris extends JComponent {
public final int DELAY = 400;...
September 17th, 2008, 07:27 AM
I have this tetris game, and i used a drawrect() method to draw a border around the playing area. However, the colors of my pieces are overridden by the drawrect() method. how do i make the color of...
September 13th, 2008, 11:06 AM
After reading some books on Ajax, I want to raise the ante by coding a Hangman game that is in JavaScript, with the phrases being stored in some MySQL database.
Looks like I have raised the ante...
September 13th, 2008, 10:56 AM
How do I do that? I have a button that when clicked shows up another window, and the previous window will close. Upon closing the new window shall the previous window be brought back again.
Can...
September 13th, 2008, 10:49 AM
Yay thanks for the idea. My code's fixed now. I placed them in an ArrayList then just painted the ArrayList for each call to paint();. :D
September 12th, 2008, 09:44 PM
September 12th, 2008, 12:41 PM
i'll try that. thanks for the quick reply.
there's this button that draws a shape on a panel, then upon another click, draws another shape [with different settings defined by the user*] but does...
September 12th, 2008, 11:00 AM
class ShapePanel extends JPanel {
Shape currentShape;
public void setShape(Shape shape) {
currentShape = shape; repaint();
}
public void update(Graphics g) {
paint(g);
}...