Forum: Web Development Job Offers Sep 24th, 2009 |
| Replies: 3 Views: 983 well , contact me if its still possible :) |
Forum: Web Development Job Offers Sep 24th, 2009 |
| Replies: 5 Views: 1,126 More Details ! you need to mirror the posts ! and the comments too ? or what ! its not must on database level you can use CURL made script to do it , provide more details and simple scenario so i get... |
Forum: Web Development Job Offers Sep 24th, 2009 |
| Replies: 5 Views: 1,126 More Details ! you need to mirror the posts ! and the comments too ? or what ! its not must on database level you can use CURL made script to do it , provide more details and simple scenario so i get... |
Forum: PHP Sep 12th, 2009 |
| Replies: 0 Views: 662 Better way to find String in PHP ! instead of substring and other php function , This function takes Start and End , and it will return the String in between in another variable ! you can call it... |
Forum: PHP Sep 12th, 2009 |
| Replies: 0 Views: 599 This is CURL Ready function , to use it just call do post if the page you are calling has post variables , or get if it has get variables :) |
Forum: PHP Sep 12th, 2009 |
| Replies: 1 Views: 7,080 This is what I do to accomplish the task of disabling the cache..
The head tag at the end of the document is important!
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META... |
Forum: PHP Sep 12th, 2009 |
| Replies: 1 Views: 2,602 Sablotron is a fast, GPL or MPL licensed XSLT engine fully implemented in C++. It uses the well-known Expat XML parser (included with the source code). It is available at its creator web site : ... |
Forum: PHP Sep 18th, 2008 |
| Replies: 4 Views: 7,966 Actually its not possible , but you could make small trick to solve it , as i did in some projects i was working on :)
first i made hidden inputs in my php file , then in the javascript i... |
Forum: HTML and CSS Aug 25th, 2008 |
| Replies: 1 Views: 913 read this XML tutorials , its simple intro and will guide you http://www.w3schools.com/xml/default.asp |
Forum: HTML and CSS Aug 25th, 2008 |
| Replies: 1 Views: 1,543 |
Forum: HTML and CSS Aug 25th, 2008 |
| Replies: 3 Views: 765 it work fine here , on firefox and IE 7 ,
but am gonna tell you advice , design your pages on Firefox first and it must work good on IE because Firefox uses web standard .
plus the most problems... |
Forum: HTML and CSS Aug 25th, 2008 |
| Replies: 3 Views: 604 i don't get what do you mean ?
you are using sql , or some sorta of database or what ?? what is ( category also called (test) ) ? |
Forum: HTML and CSS Aug 25th, 2008 |
| Replies: 1 Views: 812 well , i see its better for you to use <div> tags in all your codes , ( put the outer box in div , and the inner box div and deal with them ) |
Forum: C++ Apr 17th, 2005 |
| Replies: 4 Views: 11,715 Differences Between Java and C/C++
The Preprocessor
Pointers
Structures and Unions
Functions
Multiple Inheritance
Strings
The goto Statement
Operator Overloading |
Forum: Java Apr 13th, 2005 |
| Replies: 2 Views: 6,645 How to create an RMI system
Intro
In this article, I lead you through the process of creating a very simple RMI system. (This example was inspired by the RMI demo in Orfali and Harkey's book on... |
Forum: C++ Apr 7th, 2005 |
| Replies: 47 Views: 64,764 This is a short list of recommendations on how to use C++. My experiences are from using gcc 2.8.0 and Visual C++ 6.0. I had to have things compatible between these two compilers, and between Unix... |
Forum: C++ Apr 5th, 2005 |
| Replies: 0 Views: 2,684 This is a short list of recommendations on how to use C++. My experiences are from using gcc 2.8.0 and Visual C++ 6.0. I had to have things compatible between these two compilers, and between Unix... |
Forum: C++ Apr 5th, 2005 |
| Replies: 47 Views: 64,764 Introduction
These tips are based mainly on ideas from the book Efficient C++ by Dov Bulka and David Mayhew. For a more thorough treatment of performance programming with C++, I highly recommend... |
Forum: PHP Dec 4th, 2004 |
| Replies: 0 Views: 5,048 hi guys ..
i wanna know how to configure phpmailer .. and using Stmp .. :)
thnx in advance |
Forum: C++ Nov 20th, 2004 |
| Replies: 8 Views: 28,440 How do you make a class accessible from a dynamic link library? It is a commonly asked question with a solution that is surprisingly simple. In this article I will show you how to do it in Visual... |
Forum: C++ Nov 20th, 2004 |
| Replies: 0 Views: 3,532 Having bugs in your code may be unavoidable, but crashing *is* avoidable. Barring cosmic rays playing yahtzee with your memory there is no reason why your program should ever crash. Crashing is... |
Forum: C Nov 19th, 2004 |
| Replies: 3 Views: 5,880 the program displays the binary code for integers up to 32,768 in
#include <stdio.h>
#include <stdlib.h>
void main( int argc, char *argv[] )
{
int arg1, x;
if( argc == 1 )
{ |
Forum: C Nov 19th, 2004 |
| Replies: 3 Views: 2,157 Use Loop to deal with names , and Ascii to convert the first letter to capital one |
Forum: C++ Nov 19th, 2004 |
| Replies: 3 Views: 4,236 this the game i made since i started learnin' C++.. try to understand how to use Up and Down Arrows in directionS .
----------------------------------------------------------------------------------... |
Forum: Post your Resume Nov 18th, 2004 |
| Replies: 6 Views: 3,272 E-Book Pro (http://www.ebookpro.com/t.cgi/830455)
eBook Pro is not only a superior (and user friendly) software for packaging information, it also gives you far more security and control than other... |
Forum: C++ Sep 20th, 2004 |
| Replies: 3 Views: 8,249 The problem is to find all ways of placing n non-taking queens on a n by n board. A queen attacks all cells in its same row, column, and either diagonal. Therefore, the objective is to place n queens... |
Forum: C++ Sep 20th, 2004 |
| Replies: 0 Views: 160 The problem is to find all ways of placing n non-taking queens on a n by n board. A queen attacks all cells in its same row, column, and either diagonal. Therefore, the objective is to place n queens... |
Forum: C++ Sep 20th, 2004 |
| Replies: 1 Views: 94 hi all .. this is intorduction to an anonymous classes,
An anonymous class is one that doesn't have a name. In the following example, both structures inside the TRectangle union are anonymous... |
Forum: C++ Sep 20th, 2004 |
| Replies: 1 Views: 3,338 hi all .. this is intorduction to an anonymous classes,
An anonymous class is one that doesn't have a name. In the following example, both structures inside the TRectangle union are anonymous... |
Forum: C++ Aug 25th, 2004 |
| Replies: 7 Views: 5,616 |
Forum: C Aug 17th, 2004 |
| Replies: 34 Views: 8,153 yaeh i am sorry for this mistake i really i was tired when i wrote this reply but i am soorry again .. :(
#include <iostream> // This line of code is necessary to include all the C++ standard... |
Forum: C Aug 15th, 2004 |
| Replies: 34 Views: 8,153 hi all. .
for ( int i =0; i >10; i++; )
{ do something }
here i will be 0 in the first time code run .. thats mean the code will be done 10 times
for ( int i =0; i >10; ++1; )
{ ` do... |
Forum: C Aug 5th, 2004 |
| Replies: 2 Views: 2,056 |
Forum: C Aug 2nd, 2004 |
| Replies: 2 Views: 23,848 hi man .. see this code it may help u to figure out ur problem .. and try to make an effort in ur assignment Cuz no one can do t for u ..
/* Scheduling Simulation*/
#include <stdio.h>... |
Forum: C++ Aug 2nd, 2004 |
| Replies: 6 Views: 3,234 look at this program ... and try to develop it to satisfy ur needs |
Forum: C++ Aug 2nd, 2004 |
| Replies: 6 Views: 3,234 k .. continue what u r doing ?? what is the other ****tion that u want .. and write it .. i dont see any something hard in this code ..
if u have say where r u stuck ?? |
Forum: C Aug 2nd, 2004 |
| Replies: 6 Views: 6,611 Try this this really good :)
#include "StdAfx.h"
#include "winaddrbook.h"
CWinAddrBook::CWinAddrBook(void)
:lpWABObject(NULL),
lpAddrBook(NULL)
, IsInit(false)
{ |
Forum: C Aug 2nd, 2004 |
| Replies: 5 Views: 7,776 Linked Lists
really i amnot ready to read all of these lines of code but i will try to give you good explanation about it . A linked list is an algorithm for storing a list of items. It is made... |
Forum: C Aug 1st, 2004 |
| Replies: 2 Views: 4,720 check this link :D
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingPrintingPrinterSettingsPropertiesTopic.asp |
Forum: C++ Aug 1st, 2004 |
| Replies: 2 Views: 4,439 yeah .. this my assignment in the past .. try it .. it work fine .. ;)
#include <iostream.h>
#include <stdlib.h>
main()
{
//
int array[10]={1,2,3,4,5,6,7,8,9,10};
int... |