Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
8
Posts with Downvotes
6
Downvoting Members
7
~14.2K People Reached
Favorite Tags

35 Posted Topics

Member Avatar for rakibtg

in java jframe swing how i can use system default scrollbar style? eg. the default style looks like [this](http://i.imgur.com/3wrBufN.png).

Member Avatar for JamesCherrill
0
166
Member Avatar for rakibtg

I am using PHP Simple HTML DOM Parser to fetch urls, but i got an error while fetching links. Have a look at this script: $result = str_get_html($result); foreach($result->find('a') as $element) $result = str_get_html($result); $result = str_replace('http://', '', $result); foreach($result->find('a') as $elementa) echo $element->href; echo $elementa->href; Here I want to …

Member Avatar for sagar.shetty.946
0
2K
Member Avatar for rakibtg

i need to integrate a available domain checker in my php email form. but this seems to be complex for me as i am a beginner in PHP coding. i want to integrate it in a text field, like this: <input type="text" name="domainname" /> so, a user can check for …

Member Avatar for HelgeSverre
-2
1K
Member Avatar for rakibtg

i want to explode a string two time and make a multi-dimensional array. $data = "i love funny movies \n i like daniweb dot com \n i like rock song"; $data = explode("\n", $data); so a `print_r($data);` will output: Array ( [0] => i love funny movies [1] => i …

Member Avatar for pritaeas
0
2K
Member Avatar for rakibtg

friends please do me a help, please solve this: All class must have encapsulation, constructor, destructor and in any one solution you must have to use operator overloading 1) Define a class name DVD_DB. Include the following members. `DATA MEMBERS:` Name of DVD – private character array, size 10 Price …

Member Avatar for tinstaafl
0
1K
Member Avatar for rakibtg

Hello everyone, having some CSS related problem for layout issues. firstly see this screenshot: http://i.stack.imgur.com/nmw69.png Here i have used css like this: .description{font-weight:italic;} .image{float:right;} but what i want to do is to display `description` in the middle. Like this: http://i.stack.imgur.com/aX2B1.png can you tell me the css,, to postion `description` class …

Member Avatar for JorgeM
0
174
Member Avatar for rakibtg

I am using PHP Simple HTML DOM Parser * [Manual] to fetch data from websites. Now what i wanna do is to remove first three words from all span which has `class="yeah"` from the fetched content So i have implement this code but it has a problem: foreach($html->find('span.yeah') as $xdat) …

Member Avatar for rakibtg
0
232
Member Avatar for rakibtg

how to get content from a table id in [simple html dom parser](http://simplehtmldom.sourceforge.net), the table id is `products` and i have tried with this code: <?php include("dom.php"); $html = file_get_html("http://www.example.com"); $result = $html->find('table[id=products]'); echo "$result"; ?> but don't works, any idea to fetch content of a table which id is …

Member Avatar for LastMitch
0
236
Member Avatar for rakibtg

I am just starting with Simple PHP HTML DOM PARSER so, what is the way to replace text only of any fetched content. Suppose i have fetched some content from a website with full HTML codes, but while applying PHP code like `$html = str_replace(".", "DOT", $html);` it cause a …

Member Avatar for rakibtg
0
488
Member Avatar for rakibtg

i wonder if it is possible to fetch images using [PHP Simple HTML DOM Parser](http://simplehtmldom.sourceforge.net/) and obtain it in a specific URL. Suppose it fetched a Image in a variable like $img = 'http://www.example.com/some_image_address.JPEG'; Now is it possible to get this image in my own domain path, like $new_img = …

Member Avatar for diafol
0
227
Member Avatar for rakibtg

i have a script which will fetch content from a website, what i wanna do is modify all that links. Suppose: $html = str_get_html('<h2 class="r"><a class="l" href="http://www.example.com/2009/07/page.html" onmousedown="return curwt(this, 'http://www.example.com/2009/07/page.html')">SEO Result Boost <b> </b></a></h2>'); so, is it possible to modify or rewrite it in this way> <h2 class="r"><a class="l" href="http://www.site.com?http://www.example.com/2009/07/page.html">SEO …

Member Avatar for rakibtg
0
552
Member Avatar for rakibtg

My PHP script can fetch content from a div id, but what is the way to filter this fetch data and exclude some of its content which has this div id `<div id="navbar" class="n">content here content here</div>` I have tried with this code but its not working $regex = '#\<div …

Member Avatar for rakibtg
0
876
Member Avatar for rakibtg

hello everyone, what is the way to replace Spaces With + icon using PHP. Suppose some text like "I Love PHP" will automatically converted like this way "I+Love+PHP" .. assuming a field has this text in a variable like> `$text = I Love PHP` so this variables text spaces will …

Member Avatar for rakibtg
0
116
Member Avatar for rakibtg

I am trying to write current website url in a frame using javascript. Butt my methods does not working... What I want to do is to write the current url path into this code instead of "CURRENT+WEBSITE+URL+HERE" text. My current iframe code: `<iframe allowtransparency='true' frameborder='0' height='600px' id='web search' marginheight='0' marginwidth='0' …

Member Avatar for rakibtg
0
354
Member Avatar for rakibtg

hey, today i have installed linux zorin, it may be a new version by the way right now i can not connect to my broadband internet connection in zorin os. recently i have changed my default network adapter also and in windows os i can install it but can not …

Member Avatar for lewashby
0
227
Member Avatar for rakibtg

hi, my email form is written in php, it does not support multiple languages i mean unicode fonts. it shows something like this: খোলা জানালা . In this case what i should do.

Member Avatar for diafol
0
220
Member Avatar for apneweb

you should check your nearest post office ... i also had same problem, but i got it in my nearest post office :)

Member Avatar for rakibtg
0
118
Member Avatar for rakibtg

a script which will show a page content like video, photos to a user if they share it on Facebook. i mean to watch a video they have to share it first and only then they will able to watch it from web page...can i do it with javascript? like …

Member Avatar for dany12
0
88
Member Avatar for rakibtg

hello there, i can run php script from my computer(windows 7) by xampp. today while testing a php mail form to send an email from my computer to a e-mail address then it refuse me! it shows me something like this: Warning: mail() [function.mail]: SMTP server response: 553 We do …

Member Avatar for pritaeas
0
234
Member Avatar for rakibtg

i need a simple script that can create a slideshow of websites in an iframe after 20 seconds frequently. how i can do it ? any code sample? Thanks

Member Avatar for Pjieter
0
100
Member Avatar for rakibtg

how to show a javascript warning message for some specific words from a textfield. if a user write [B][COLOR="Red"]http://[/COLOR][/B] and [B][COLOR="Red"]/[/COLOR][/B] in a textfield and click on the Submit button of my form then a javascript will show a error message to the user and submission will stop. How to …

0
91
Member Avatar for rakibtg

hello there, i have a php e-mail script which i am using for my website where users can submit their website. so i wish to add a reciprocal link checker script which can be act just like Google rEcaptha in my php email form. if my site link can't be …

Member Avatar for skraps
0
215
Member Avatar for rakibtg

my laptop's Hard disk crashed. So is there any way to install windows xp in a memory card. Have a nice day! :)

Member Avatar for rakibtg
0
796
Member Avatar for rakibtg

hello there, i need a customized free website pagerank checker script. This script may be in php but i need to extracts all data in a .html page. is this types of script available for free or any idea thanks

Member Avatar for karthik_ppts
-1
59
Member Avatar for rakibtg

How to extract a website TITLE, META KEYWORDS and META DESCRIPTION by javascript for example [URL="www.surfpack.com/bangladeshiwebdirectory_com"]www.surfpack.com/example_com[/URL] site has exactly extracts [[url]www.example.com][/url] websites TITLE, META KEYWORDS and META DESCRIPTION. How to do it by javascript mainly in HTML? Thankyou!

Member Avatar for matricol
0
1K
Member Avatar for rakibtg

hello, i am trying to add a feature in my contact form that create a link with visitors submitted 'TITLE' and 'URL'. Have a look at this code! ***In this code [B]$attn = Visitors submitted URL[/B] and [B]$visitor = Visitors submitted title[/B]. [CODE]$todayis = date("l, F j, Y, g:i a") …

Member Avatar for rakibtg
0
192
Member Avatar for rakibtg

Any one can tell me that how i can know this encoded URL [url]http://www.example.com/services/gblv/gblv.php?54470e3db771f60e2a4c24df81f251[/url]

Member Avatar for stbuchok
0
39
Member Avatar for rakibtg

how to make a email form that can send one email to 20 email address, or from which website i can get a free copy of this types of emil form php script

Member Avatar for MooGeek
0
42
Member Avatar for rakibtg

hello how i can put image in button. Below <input id="b-searchbtn" value="Search" type="submit"/>

Member Avatar for rakibtg
0
71
Member Avatar for rakibtg

i have found a free php email form, it is a good form but problem is that it has a custom title so emails are come to me as a custom title in my inbox. [I]define( 'PHPFMG_SUBJECT' , "[B]Here Is The Custom Title[/B]" );[/I] it's located in [B]/form.lib.php[/B] root. How …

Member Avatar for diafol
0
149
Member Avatar for rakibtg

how to create an [B]wysiwyg[/B] html editor in <textarea name="sender_message"></textarea> is it possible when send an email from a php form?

Member Avatar for rakibtg
-1
264
Member Avatar for rakibtg

How to make a php mailing form that will send emails to my email address by checking spam and if spam email send to my email address then it will automatically remove the spam email. How i can make this type of php form? Is this types of script are …

Member Avatar for rakibtg
0
138
Member Avatar for rakibtg

I want to know how to make a frame in html which will not lookink like a frame, i mean if we do right click on a frame then it will then browsers show a link like [B]This Frame>[/B] but i wanna make a frame which will work as a …

-1
43
Member Avatar for rakibtg

how to make a php link which will open in new tab what should be the php code to open a link in new tab. how i can make a link in php which will open in new tab?

Member Avatar for Caeon
0
145
Member Avatar for rakibtg

any body tell me how to edit adsnese like ezinearticle.com or how to add my own css in adsense . is ezinearticle.com break adsense tos ? if not can i use it for my site . how should i use it in my site? adsense hack, adsense in custom css

Member Avatar for Kieran Y5
0
73

The End.