Posts
 
Reputation
Joined
Last Seen
Ranked #621
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 #858
Ranked #2K
~55.5K People Reached
About Me

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

Interests
PHP,JS,LAMP
PC Specs
HP Pavilion dv6500ee
Favorite Tags

112 Posted Topics

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
313
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
91
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
418
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
1K
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
662
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
397
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
894
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
151
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
628
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
4K
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
760
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
233
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
156
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
242
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
153
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
388
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
217
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
63
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
108
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
441
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
181
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
850
Member Avatar for shalin

[url]http://www.microsoft.com/resources/documentation/WindowsServ/2003/standard/proddocs/en-us/Default.asp?url=/resources/documentation/WindowsServ/2003/standard/proddocs/en-us/sag_DNS_ovr_Tools.asp[/url] check this link dude ..:)

Member Avatar for William Hemsworth
0
999
Member Avatar for kyllle

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 in FireFox coming from miscalculate the height , width …

Member Avatar for MelechM
0
106
Member Avatar for Tony0930

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

Member Avatar for AON07
0
92
Member Avatar for amie654

read this XML tutorials , its simple intro and will guide you [url]http://www.w3schools.com/xml/default.asp[/url]

Member Avatar for meabed
0
79
Member Avatar for kyllle

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 )

Member Avatar for meabed
0
107
Member Avatar for ml2662

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 of any number of pieces of memory (nodes) and …

Member Avatar for findsyntax
0
179
Member Avatar for meabed

Here is a quick and dirty tutorial for UNIX sockets. By no means it is complete but after reading it, man pages start making sense. Oops two seconds already wasted lets dive into the topic thanks to Delip Rao......:D:D

Member Avatar for ckb4u
0
76
Member Avatar for MAPONYA

k .. continue what u r doing ?? what is the other fucktion that u want .. and write it .. i dont see any something hard in this code .. if u have say where r u stuck ??

Member Avatar for real_napster
0
145
Member Avatar for Sukhbir
Member Avatar for alex130

Good point! Perhaps no user in the world can move a mouse that fast under normal conditions—but hey, it could happen! And in the old days of Windows 3.1, it may have been more likely. This is why Windows does, in fact, provide a way to get the mouse coordinates …

Member Avatar for uglinho
0
5K
Member Avatar for TJW

Pointers and Memory Allocation When declaring a variable, the type given is the type of any expression which looks like the declaration. Thus, if we have the declarations [CODE]int a, *b, c[], *(*d[])(); [/CODE] then, in the code, the expressions [CODE]a, *b, c[] and *(*d[])() [/CODE] would all evaluate to …

Member Avatar for ~s.o.s~
1
410
Member Avatar for CJ555

Try to install windows 98se and save your settings then you won't lose anything of your information ..:D

Member Avatar for jbennet
0
162
Member Avatar for 514dude

Hi .. look if u want to remove "winodws me" and u have windows xp .. log in xp and remove the directory of windows me and open c:\boot.ini and remove the link for winodws me ... is it okay?

Member Avatar for caperjack
0
236
Member Avatar for meff_04

Try to download runtime c++ files from this site :) [URL=www.htk.fi/public/akirjavainen/download.htm ]Runtime[/URL]

Member Avatar for xeoneon
0
379
Member Avatar for jwenting

[B]How to create an RMI system[/B] [B]Intro[/B] 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 CORBA; I thought it was still too complicated, so I've taken the simplification …

Member Avatar for meabed
0
365
Member Avatar for meabed

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 and Windows. [b]Contents[/b] [color=#800080]IO of binary files[/color] [color=#800080]When are destructors called for local variables[/color] …

0
140
Member Avatar for freesoft_2000
Member Avatar for meabed

[font=VERDANA, ARIAL, HELVETICA, SANS-SERIF][size=1][font=VERDANA, ARIAL, HELVETICA, SANS-SERIF][size=1][font=VERDANA, ARIAL, HELVETICA, SANS-SERIF][size=1]Having bugs in your code may be unavoidable, but crashing [i]*is*[/i] avoidable. Barring cosmic rays playing yahtzee with your memory there is no reason why your program should ever crash. Crashing is totally avoidable![/size][/font] [font=VERDANA, ARIAL, HELVETICA, SANS-SERIF][size=1]What do I mean …

1
172
Member Avatar for missy

[b][size=1]the program displays the binary code for integers up to 32,768 in[/size][/b] [code]#include <stdio.h> #include <stdlib.h> void main( int argc, char *argv[] ) { int arg1, x; if( argc == 1 ) { puts( "BINARY num = displays num in binary form." ); exit( 1 ); } arg1 = atoi( …

Member Avatar for Narue
0
117
Member Avatar for Nyika

this the game i made since i started learnin' C++.. try to understand how to use Up and Down Arrows in directionS . ---------------------------------------------------------------------------------- [php]/**********The "CAUGHT IN THE MIDDLE" game******************/ /Author : mohammed meabed*****************************/ /Email : meabed@gmail.com*****************************/ #include<iostream.h> #include<conio.h> #include<graphics.h> #include<stdlib.h> #include<dos.h> #include<stdio.h> enum dir direction; /*indicates the direction of …

Member Avatar for vegaseat
0
1K

The End.