- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
24 Posted Topics
Hello everybody! Has anyone here used GXT to build web application? I just want to know how did you handle breadcrumb? How you create it? | |
Hello guys. I have a problem to check datetime overlapping in oracle database. I have this kind of data in my table in oracle. [B]START_DATE[/B] 2011-01-01 08:00:00 [B]END_DATE[/B] 2011-01-01 16:30:00 Given datetime from user is something like this : ---------------------------------------------------------- StartDate = 2011-01-01 07:30:00 EndDate = 2011-01-01 16:20:00 [B]OR[/B] StartDate … ![]() | |
[CODE] public Integer countWeekday(Date startDate) { startDate.setHours(0); startDate.setMinutes(0); startDate.setSeconds(0); }[/CODE] I have this function and a parameter passed to it. setHours,setMinutes and setSeconds are deprecated. What else can i use? | |
[CODE]RpcProxy<PagingLoadResult<BaseModel>>[/CODE] Hye guys. I would like to know what is the meaning of [B]<>[/B] in the statement above? What I mean is something like <BaseModel>. What is this? When is it going to be used? Thanks | |
I have this code which do some matrix operation. It can be run on Microsoft Visual c++ 6.0 but i got problem when run it using Dev C++ 4.9.9.2.. it says, [COLOR="Red"]main must return and int[/COLOR] Can somebody help me? [CODE]// FDduct.cpp , finite difference. method. for duct #include <stdlib.h> … | |
Hello fellows. I'm creating a new oracle database table. My table name is [B]tblTest[/B]. But it returns an error code ORA-00903: Invalid Table Name. I dont know why this happen. I think the table name is right. But what is the problem actually. [URL="http://img820.imageshack.us/img820/3946/nonametgm.jpg"]http://img820.imageshack.us/img820/3946/nonametgm.jpg[/URL] Thank you. | |
Re: [CODE]<Files ~ "\.(php)$"> Order allow,deny Deny from all Satisfy All </Files>[/CODE] | |
Hello fellows. I need some help regarding my script. I have a simple php script contains form to insert [B]First Name[/B] and [B]Last Name[/B]. This works successfully. But my problem is when i try to display the posted data to ASP page, the ASP page doesnt come out. What should … | |
Re: I'm afraid your session has expired. :) | |
Re: your validator may not work in updatepanel anymore.. but then you can download the compatible version where all the validators work in updatepanel.. refer here to download.. [url]http://blogs.msdn.com/b/mattgi/archive/2007/01/23/asp-net-ajax-validators.aspx[/url] | |
Re: try to create the hyperlink inside the <td> tag. for example: [CODE] while($row=@mysql_fetch_array($query)) { echo '<tr>'; echo '<td><a href="#">BLAH BLAH</a></td>'; echo '</tr>'; } [/CODE] | |
[icode]18830042010000000000010000010.00 300420101004301512210344 881114065677 john smith 0000010.00 18801062010000000000010000435.20 010620101006011143170683 841208925437 luna barbara 0000435.20 18830062010000000000010001881.00 300620101006302037530018 872420036243 micheal jordan 0001881.00 [/icode] [COLOR="Green"]I have a text file contains information shown above. I would like to produce a php code where it can read the text file and then insert the extracted data into … | |
Re: [CODE]SELECT place WHERE activities LIKE %waterfall%[/CODE] | |
Re: try this.. [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <script language="JavaScript" type="text/javascript"> function tester() { var a = 0; var b = 0; var c = 0; var d = 0; var e = 0; var menuVal=""; if(document.menu.elements[0].checked==true) { menuVal += document.menu.elements[0].value + "\n"; a = 110; } … | |
Re: [QUOTE=angelos33;1386707]Hi! First i want to thank all you people who have been a huge help for me, i almost always i find the answers of my questions. But i would like to know is it possible to retrieve more values from the table, (if the table have 4 columns) how … | |
Re: or you can use month() built-in function to get month value from date field. [CODE]SELECT * FROM `testdate` WHERE month(date)=$_GET['month'] [/CODE] | |
Re: use php GD library to create image. :D | |
Re: all you have to do is design the flow of the system first. Either you use ERD or OOP. This will give you a big picture on how the system works. For example you got two tables in your database which are User and Post. Define the relationship between this … | |
Re: try to reinstall your wampserver. | |
Re: Try this [CODE]<?php session_start(); $action = $_POST["submit"]; if ($action == "Back") { header("Location:empmenu.php"); } else { $server = mysql_connect("localhost", "root", ""); $selectDB = mysql_select_db("ems"); $search = $_POST["search"]; //in this section user must search colleague info by using fullname. if ($server) { if ($selectDB) { $sql = "SELECT * FROM employee … | |
Re: [CODE]<?php // Receiving variables @$pfw_ip = $_SERVER['REMOTE_ADDR']; @$fn = addslashes($_POST['fn']); @$ln = addslashes($_POST['ln']); @$address = addslashes($_POST['address']); @$city = addslashes($_POST['city']); @$state = addslashes($_POST['state']); @$zip = addslashes($_POST['zip']); @$phone = addslashes($_POST['phone']); @$email = addslashes($_POST['email']); @$emailMe = addslashes($_POST['emailMe']); @$comments = addslashes($_POST['comments']); // Validation //saving record in a text file $pfw_file_name = "formtest.csv"; $pfw_first_raw = … | |
Re: You may set a link with query string to do this. I think this is an easier way to do that. For example your page link is [url]http://localhost/display?imgID=10[/url] so, you use GET to obtain the id of specified image. Your sql will be something like this. [CODE]SELECT overlay.*, portfolio.portfolio_id FROM … | |
Re: [CODE]<?php include 'includes/connect.php'; include 'includes/header.php'; // Variable declaration $username = mysql_escape_string($_POST["user_name"]); $password = mysql_escape_string($_POST["user_pass"]); $email = mysql_escape_string($_POST["user_email"]); echo '<h3>Sign up</h3>'; if ($_SERVER['REQUEST_METHOD'] != 'POST') { /*the form hasnt been posted yet display it not that the action="" will cause the form to post the same page it is on */ … | |
hello everyone.. i would to ask about my simple code here.. it's not working.. i actually want to display a forum badge which is data are received from the database. And i stucked at putting the avatar to a portion of the badge..i mean it looks like facebook profile badge... … |
The End.