Posts
 
Reputation
Joined
Last Seen
Ranked #614
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
87% Quality Score
Upvotes Received
22
Posts with Upvotes
14
Upvoting Members
16
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
5 Commented Posts
1 Endorsement
Ranked #857
Ranked #2K
~53.6K People Reached
About Me

http://ae.linkedin.com/in/mmeabed

Interests
PHP,JS,LAMP
PC Specs
HP Pavilion dv6500ee
Favorite Tags
Member Avatar for meabed

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 easily :)

Member Avatar for LastMitch
1
310
Member Avatar for animesh

i think that you can use enum it is as structure but enum list the elements by index as array .. for example enum days_of_the_week ={sat,sun,mon,tue,wed,thu,fri }; there for .. sat has the value 0 and sun = 1 and mon = 2 and so on .. so if u …

Member Avatar for deceptikon
0
3K
Member Avatar for meabed

hi guys .. i wanna know how to configure phpmailer .. and using Stmp .. :) thnx in advance

Member Avatar for LastMitch
0
89
Member Avatar for meabed

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 :)

Member Avatar for cereal
0
415
Member Avatar for camelNotation

#C++ : One-Hour Overview ##(1) User-Defined ADT (Abstract Data Types) e.g.: "enum" creates a user-defined type. enum Months { JAN = 1, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC }; Months x,y; x = FEB; y = DEC; "struct" creates more flexible user-defined types. How to …

Member Avatar for tekbhatta
1
2K
Member Avatar for reuben12

Opening and Parsing a file We will use the function fopen to open a file (the c source file for this section). Then we will use the fscanf function to read the file word by word. Note that in c a string is a character array (whose last element is …

Member Avatar for maaroufi
1
2K
Member Avatar for ellisrn

see this example dude ;) [code] int main() { int num; do{ cout << "Enter a number between 1 and 10"; cin>>num; }while( num < 1 || num > 10 ); /* ask some more if we dont get something between 1 and 10 */ double factorial( num ); for( …

Member Avatar for Fbody
0
999
Member Avatar for Dani

hi all. . [code] for ( int i =0; i >10; i++; ) { do something } [/code]here i will be 0 in the first time code run .. thats mean the code will be done 10 times [code] for ( int i =0; i >10; ++1; ) { ` …

Member Avatar for WaltP
0
648
Member Avatar for TJW

Array An array is a collection of like objects. The simplest case of an array is a vector. C++ provides a convenient syntax for declaration of fixed-size arrays: [CODE]decl-specifiers dname [ constant-expressionopt ] ;[/CODE] The number of elements in the array is given by the constant-expression. The first element in …

Member Avatar for espar
0
374
Member Avatar for kittystitches

[B]Embedding the Windows Media Player[/B] this is for IE ..only .. ther is another ways for if u r using another browser .. just PM me ;) There are two ways to play a streaming media file. The first one is through an external Media Player. If you haven't install …

Member Avatar for media90cj
0
1K
Member Avatar for meabed

[edit] This code was originally posted [URL="http://www.programmersheaven.com/dow...3/ZipView.aspx"]here [/URL][/edit] 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 on an n …

Member Avatar for bangonkali
0
890
Member Avatar for Naveen
Member Avatar for ze_viru$

check this link ;) [url="http://www.cpp-home.com/tutorial.php?17_1"][CODE] [/url][url="http://www.cpp-home.com/tutorial.php?17_1"]http://www.cpp-home.com/tutorial.php?17_1[/url][url="http://www.cpp-home.com/tutorial.php?17_1"] [/CODE] [/url]

Member Avatar for ruwaiz1028
-3
3K
Member Avatar for israel

You must recieve CD for this device and should install it or search for the driver in this site [URL=www.driverguide.com]Driverguide[/URL] or check your bois setup .. okay :D

Member Avatar for sunsetmamba
0
147
Member Avatar for BlackDice

You can use this link to find any missing dll files [URL=http://www.santanacreations.com/needed_files.html]Dll files[/URL]

Member Avatar for hihihi hahaha
0
623
Member Avatar for alexbadboys

[B]Overview[/B] Serial communications in Microsoft® Win32® is significantly different from serial communications in 16-bit Microsoft Windows®. Those familiar with 16-bit serial communications functions will have to relearn many parts of the system to program serial communications properly. This article will help to accomplish this. Those unfamiliar with serial communications will …

Member Avatar for Alexandra_Os
0
3K
Member Avatar for matika

void qsort ( void * base, size_t num, size_t width, int (*fncompare)(const void *, const void *) ); Sort using quicksort algorith. This function uses an implementation of the quicksort algorithm to sort the num elements of an array pointed by base, each element has the specified width in bytes. …

Member Avatar for sachin_mnnit
1
745
Member Avatar for raju.raghup
Member Avatar for popo_prince

I Don't know what the program about .. and what the last function about ? maybe u must define the fuction to make it work . then you must declare the variables inside it .coz those variables are declared as local variable in main()..

Member Avatar for jBat
0
228
Member Avatar for abd2

really i dont see that thhis importance for posting tutorial in Switch this is poor .. but np study hard ;)

Member Avatar for mrnutty
1
152
Member Avatar for coolice

Try this this really good :) [code] #include "StdAfx.h" #include "winaddrbook.h" CWinAddrBook::CWinAddrBook(void) :lpWABObject(NULL), lpAddrBook(NULL) , IsInit(false) { //Opens the default WAB file in the system and loads it into the object HINSTANCE hinstWAB=NULL; HRESULT hr=E_FAIL; HKEY keyResult; BYTE keyValue[MAX_PATH]; DWORD dataout=800; RegOpenKeyEx(HKEY_LOCAL_MACHINE, WAB_DLL_PATH_KEY, 0, KEY_ALL_ACCESS, &keyResult); //"Software\\Microsoft\\WAB\\DLLPath" long result = …

Member Avatar for William Hemsworth
0
234
Member Avatar for bwest

This is what I do to accomplish the task of disabling the cache.. The head tag at the end of the document is important! [code] <html> <head> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Expires" CONTENT="-1"> </head> <body> Body stuff </body> <HEAD> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Expires" CONTENT="-1"> </HEAD> </html>[/code]

Member Avatar for meabed
0
151
Member Avatar for laxy_m

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 : [url]http://www.gingerall.com[/url]. Okay, now you may ask : what is an XSLT engine, and what does …

Member Avatar for meabed
0
386
Member Avatar for meabed

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 classes: Here is an example of running the program: You want to identify your rectangle by its location …

Member Avatar for crestaldin
0
210
Member Avatar for meabed

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 on an n by n board in such a way that …

0
61
Member Avatar for meabed

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 classes: Here is an example of running the program: You want to identify your rectangle by its location …

Member Avatar for crestaldin
0
104
Member Avatar for meabed

<<snip>> Original article can be found: here: [URL="http://www.geocities.ws/jeff_louie/safearray.html"]http://www.geocities.ws/jeff_louie/safearray.html[/URL]

Member Avatar for JeffLouie
0
385
Member Avatar for meabed

[I]<<snip>> [/I] Original article can be found here: [url]http://www.cs.cmu.edu/~gilpin/c++/performance.html[/url]

Member Avatar for Lisa1110
3
1K
Member Avatar for farahphp

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 getElemetbyIDvalue , and then i assign the value to …

Member Avatar for buddylee17
0
178
Member Avatar for meabed

[font=VERDANA, ARIAL, HELVETICA, SANS-SERIF][size=1]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 C++. [/size][/font] [font=VERDANA, ARIAL, HELVETICA, SANS-SERIF][size=1]First, you need to …

Member Avatar for ArkM
0
800