₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,272 members, 8,421,084 topics. Date: Friday, 05 June 2026 at 06:34 PM

Toggle theme

Xclusiv's Posts

Nairaland ForumXclusiv's ProfileXclusiv's Posts

1 2 (of 2 pages)

AutosRe: ASK GAZZUZZ by xclusiv(m): 4:15pm On Nov 06, 2017
Thanks. I will have them checked out

GAZZUZZ:
if only when a.c is on, possible culprits are a dirty condenser, faulty radiator, fans spinning in wrong direction
AutosRe: ASK GAZZUZZ by xclusiv(m): 9:17pm On Nov 05, 2017
Oga Gazzuzz My 2004 Honda Accord EX-L V6 constantly overheats when the AC is on. There's colant in the radiator and both fans are working perfectly
Technology MarketRe: US Used Htc M8 by xclusiv(m): 7:50pm On Jun 12, 2016
olalekanba:
VI/Ojodu
Am in Omole. I will call you tomorrow.
Technology MarketRe: US Used Htc M8 by xclusiv(m): 3:34pm On Jun 12, 2016
Where is your location?
LiteratureRe: Which Book Are You Currently Reading? Share Some Thoughts! by xclusiv(m): 9:49pm On Jul 14, 2015
dearpreye:
Are you serious? I've read his Outliers shaa.

Drop a tthought sir.
To keep it short. The book seeks to explain the advantages of disadvantages and the disadvantages of advantages.

If you like outliers, you won't be disappointed. Its very insightful
1 Like 1 Share
LiteratureRe: Which Book Are You Currently Reading? Share Some Thoughts! by xclusiv(m): 9:20pm On Jul 14, 2015
David and Goliath by Malcom Gladwell


The book talks about the advantages of disadvantages and the disadvantages of advantages
1 Like 2 Shares
PoliticsRe: AIT Reacts To Allegation Of Closing Down Poll Website Because Buhari Was Leading by xclusiv(m): 6:53am On Jan 29, 2015
These online polls are built to prevent multiple entries from the same IP address. I checked the wp-poll that AIT is using on their site and the feature is built-in by default. AIT should come up with a better excuse we are not all fools
Technology MarketRe: Brand New Samsung Galaxy Note For Sale! by xclusiv(m): 11:10am On May 28, 2012
your price is a bit on the high side, I saw it for 95k at a store in VI
Technology MarketRe: Htc Desire Unlocked 32gb Memory,apple Iphone 4 32gb New Sealed For Sale: by xclusiv(m): 6:50am On Nov 07, 2010
How much for your HTC Desire?
Technology MarketRe: I Need Blackberry Touch Urgently by xclusiv(m): 9:04am On Aug 25, 2010
miksonics, haba how can you have one for sale and its 5 months old, the phone just came out barely a month ago, you are a SCAMMER
Technology MarketRe: I Need A Blackberry Torch Its The Latest Blackberry by xclusiv(m): 10:55am On Aug 06, 2010
Haba!!! The phone came out just 3 days ago. How can u get a used one? The phone cannot be more than $650 for a carrier unlocked version.
Technology MarketRe: I Need An Iphone 3gs 16gb by xclusiv(op): 11:03am On Jul 23, 2010
thats true, please paste pictures and prices if they are available. I need to make a decision this weekend.
Technology MarketI Need An Iphone 3gs 16gb by xclusiv(op): 3:59pm On Jul 22, 2010
I need an iPhone 3Gs 16GB or iPhone 3G 32GB. Reply if you have one for sale
Technology MarketRe: I Need An Ipod Touch by xclusiv(op): 3:42pm On Jun 28, 2010
okay, mail the price and details - biodun@ymail.com
Technology MarketI Need An Ipod Touch by xclusiv(op): 12:36pm On Jun 27, 2010
Anyone has an ipod touch 3G to sell? preferably 32GB. Am interested!!
WebmastersRe: Web Site For N1,000(php,html) by xclusiv(m): 2:30pm On Jan 25, 2010
I feel compelled to comment on this thread, the poster really needs to have a good knowledge of CSS, Colour Combinations, Photoshop/fireworks, e.t.c or you should just forget webdesign completely and focus on programming or something else, Its not enough to know how to use the tools, you must learn how to use it to create beautiful interface. All the site you have featured lacks that.
WebmastersRe: Why The Drudge Report Is One Of The Best Designed Sites On The Web by xclusiv(m): 9:30am On Nov 24, 2008
the fact that he has 20m+ unique visitors, doesn't mean the site is good, i believe the world is changing and if he decides not to change , he will be grounded by change if not destroyed by it -so just because he is making money from it today doesn't mean he will continue to sustain the cashflow, if site like google have not change the way search is done and have not continued to make changes, am sure they will not be the biggest media company in the world.

If Google has remained the way they were 7 yrs ago, they might still be making money, but am sure not as much as they are making right now. If the guy thinks there is no need to innovate, all i can say then is the that the clock is ticking on is site (9 | 8 | 7 |, ) lipsrsealed
WebmastersRe: How To Create An Autoresponder In An Html Form by xclusiv(m): 5:04pm On Nov 21, 2008
to auto respond to create an autoresponder in php

you can add a form function to the form with the form action directed at another page, then u can use the following php script to create the autoresponder, note that you will need to create a separate HTML Page that will hold the autoresponder message

<html>
<head>
<title>page title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head>
<body>

<?php
/* Code Developed by Abiodun Ogunibe. Copyright 2007. All Rights Reserved*/

/* subject */
$subject = "Feedback Form Submission, with autoresponder.";

/* message */
$message='The following information were submitted on ' . date("F j, Y, g:i a"wink . ' through the feedback form' ."\r\n".
'==============================================================='."\r\n".
/*the variable name in the POST[] title depends on the name u give ur form field*/
'Title: ' . $_POST[title] . "\r\n".
'First Name: ' . $_POST[firstname] ."\r\n".
'Surname: ' . $_POST[surname] ."\r\n".
'Position: ' . $_POST[position] ."\r\n".
'Company: ' . $_POST[company] ."\r\n".
'Address: ' .$_POST[address] ."\r\n".
'Tel: ' .$_POST[phone] ."\r\n".
'E-mail: ' .$_POST[email] ."\r\n".
'Comments: ' .$_POST[message] ."\r\n".
'======================SYSTEMS DETAILS=========================='."\r\n".
'IP: '.$_SERVER[REMOTE_ADDR] ."\r\n".
'User Agent: '.$_SERVER[HTTP_USER_AGENT]."\r\n";

/* Send Reply to E-Mail <strong></strong>*/
$headers = "From: " . $_POST[email]. "\r\n";
mail("info@yourwebsite.com", $subject, $message, $headers);

$message = '<font size="2" face="Arial, Helvetica, sans-serif">'.'Dear ' . $_POST[name] . ',' . '<p></p>';
/*the feedback.html is the autoresponder that u want to send*/
$message .= implode ('', file ('feedback.html'));

$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: Your Company's Name <info@yourwebsite.com>\r\n";

/* and now mail it */
$subject = "Your Comment/Question.";
mail($_POST[email], $subject, $message, $headers);

?>

<script>
window.location="contact_reply.html"
</script>

</body>
</html>

save the message as .PHP and reference the page using the form action control, if u use formfield in HTML
WebmastersRe: Why The Drudge Report Is One Of The Best Designed Sites On The Web by xclusiv(m): 2:16pm On Nov 21, 2008
While I don't completely disagree with the report, there are a few pointers that is worthy of note

1. All Website have different design objectives - If the purpose of my design is to show of my skill as a designer, then i cannot compare my design with that of a site that just wants to pass information. For example if you check www.2advanced.com, the site is highly animated and heavy, but the developers wanted and needed to show that they are capable of doing some good multimedia design, and the purpose is achieved. therefore it will be unfair to compare their site with others in another industry.

2. The Drudge guy, counld have achieved a bit more if the layout has been better, there is something about layout and white spaces that can bring information clearer to you

3. I didn't enjoy the scrolling on the page , i use a 1280 x 800 resolution on my system and i must say i hated having to scroll endlessly to get the information that i needed

4 , and finally why didn't he categorise the news, i was trying to find stuff on technology and i couldn't find with all the barge of information that was making my eyes see double

i can compare the site with www.havenworks.com, only that it has less colour, images and blinking text
WebmastersRe: How Is My **Free** Css Ebook? by xclusiv(m): 9:48am On Nov 20, 2008
@yawatide
I won't mind a copy as well, my email is ameclat@gmail.com

thanks
WebmastersRe: A Few Css Shortcuts by xclusiv(m): 9:27am On Nov 17, 2008
@kehers
Compressing Stylesheet does not change the code, it justs reduce the lines of code u have, and the CSS Software can be use to test your code and check for browsers compatibilty
WebmastersRe: A Few Css Shortcuts by xclusiv(m): 8:45am On Nov 13, 2008
you can write your css code anyway you understand it, and use Free CSS Toolbox, http://www.blumentals.net/download/to compress your stylesheet
WebmastersRe: Website Review by xclusiv(op): 10:12am On Oct 29, 2008
I really don't support flash or javascript menus, because both could have accessibility issues. For example, if you build a flash menu with Flash CS3, that means you're publishing with flash player 9, a system with a lower version (especially 7 or below) might have issues viewing your menus , the best solution is to use a CSS Based menu, that way you will not have compatibility or accessibility problems.
WebmastersRe: Website Review by xclusiv(op): 10:31am On Oct 27, 2008
@Postmaster - Sorry I have to put it this way , there is nothing "templately" in that design and i appreciate if you are sure of your facts before making such statement, not every nice looking site is a template. What would have been a template on the site? is it the flash or the layout or the navigation style? Please try and get your facts straight
WebmastersRe: The New Flash Cs4 by xclusiv(op): 7:43am On Oct 09, 2008
The Advanced Timeline Interface

WebmastersThe New Flash Cs4 by xclusiv(op): 7:27am On Oct 09, 2008
Checkout The New Adobe CS4 top Features -

3D transformation

Animate 2D objects through 3D space with exciting new 3D translation and rotation tools, which allow you to animate along the x, y, and z axes. Apply local or global transformation to any object.

Procedural modeling with Deco and Spray Brush

Turn symbols into instant design tools. Apply symbols in a variety of ways: Quickly create kaleidoscope-like effects and apply fills using the Deco tool, or randomly spray symbols across any defined area using the Spray Brush.

Metadata (XMP) support

Add metadata to SWF files using the new XMP panel. Quickly assign tags for enhanced collaboration and better mobile experiences.
Authoring for Adobe AIR

Deliver interactive experiences to the desktop with new integrated capability to publish to the Adobe® AIR™ runtime. Reach even more audiences across more devices — web, mobile, and now the desktop.

Inverse kinematics with the Bones tool

Create chain-like animation effects with a series of linked objects, or quickly distort a single shape using the new Bones tool.

Motion editor

Experience detailed control over keyframe parameters, including rotation, size, scale, position, filters, and more, using the new motion editor. Refine easing control with graphical displays similar to those in After Effects.

Motion presets

Jump-start your project with prebuilt animations that can be applied to any object. Select from dozens of presets or create and save your own. Share presets with others to save animation time.
H.264 support

Encode to any format recognized by the Adobe Flash Player runtime with Adobe Media Encoder, the same tool found in other Adobe video products and now with support for H.264.
WebmastersRe: Website Review by xclusiv(op): 12:58pm On Oct 06, 2008
Thanks guys, appreciate the comments grin
WebmastersWebsite Review by xclusiv(op): 8:46am On Oct 06, 2008
Please Review this site http://www.techmarketng.com
WebmastersRe: Please Someone Should Review My Hosting Site. by xclusiv(m): 1:09pm On Aug 07, 2008
you don't need us to rate your site, because all u did was to customize a template!!!
Art, Graphics & VideoRe: Beautify This Section With Your Works. by xclusiv(m): 10:07am On Jul 22, 2008
how about this

Art, Graphics & VideoFlash Designer Needed Urgent! by xclusiv(op): 10:53am On Jun 03, 2008
I need a flash designer to make some designs, reply ith ur email and i will send d details
ProgrammingRe: Microsoft Front Page Or Adobe Dreamweaver? by xclusiv(m): 12:27pm On May 21, 2008
Adobe Dreamweaver all the way!!!!

1 2 (of 2 pages)