Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 5
1
2
3
>
Last
»
Showing results 1 to 25 of 123
Search took
0.51
seconds.
Search:
Posts Made By:
Will Bontrager
Forum:
HTML & CSS
09-13-2012, 01:47 PM
Replies:
3
Coding for a double drop down image selector
Views:
861
Posted By
Will Bontrager
This may do it for you: <select...
This may do it for you:
<select onchange="document.getElementById('dropimage1').src = this.options[this.selectedIndex].value">
<option...
Forum:
HTML & CSS
09-13-2012, 01:04 PM
Replies:
1
Firefox & IE Problem
Views:
572
Posted By
Will Bontrager
I'm a bit out of my element here as CSS certainly...
I'm a bit out of my element here as CSS certainly is not my strong point.
Something to consider is this linebody{background-color: rgb(247, 247, 247); background-image: none; }may be preventing...
Forum:
HTML & CSS
09-11-2012, 11:52 PM
Replies:
2
HTML read .txt .xls .something??
Views:
483
Posted By
Will Bontrager
The .txt file might be placed into an iframe. I'm...
The .txt file might be placed into an iframe. I'm not familiar with Dreamweaver, but probably they have a way to make an iframe. The URL of the document to put into the iframe is the URL of the .txt...
Forum:
HTML & CSS
09-11-2012, 11:42 PM
Replies:
2
Simple CSS colour change
Views:
388
Posted By
Will Bontrager
The CSS input:focus will affect input tags within...
The CSS input:focus will affect input tags within the scope of the .outer class.
I don't know how to do what you're wanting without some scripting. But then, I'm certainly not a CSS expert.
...
Forum:
PHP
09-02-2012, 01:27 PM
Replies:
2
Loope in .tpl PHP script {hjelp}
Views:
442
Posted By
Will Bontrager
Don't see the {if} corresponding to {elseif...
Don't see the {if} corresponding to {elseif $category.spacing == '2'} in the pseudocode. Assuming {if $category.spacing == '2'} was meant.
This idea may work for you:
<!-- <ul class="cat1"...
Forum:
PHP
09-02-2012, 01:12 PM
Replies:
6
Problem with building array
Views:
366
Posted By
Will Bontrager
$characters is assigned a value and var_dump...
$characters is assigned a value and var_dump dumps the content of $characters every time through the loop.
Whenever $characters is assigned a value in the loop, it overwrites the previous value.
...
Forum:
PHP
09-02-2012, 12:34 PM
Replies:
4
Help with combining multiple isset lines
Views:
293
Posted By
Will Bontrager
Well, it appears p=2 does work or the page at the...
Well, it appears p=2 does work or the page at the URL you provided wouldn't load. Perhaps you got it fixed since your post.
I'm assuming blocking the page in this context means to print a...
Forum:
PHP
09-01-2012, 08:16 PM
Replies:
14
how to use php
Views:
954
Posted By
Will Bontrager
PHPExcel (http://phpexcel.codeplex.com/) might be...
PHPExcel (http://phpexcel.codeplex.com/) might be used to import the data from Excel. Then manipulate the data and export back to Excel.
Will
Forum:
PHP
09-01-2012, 08:02 PM
Replies:
4
Help with combining multiple isset lines
Views:
293
Posted By
Will Bontrager
Perhaps this will work for you: $noindex...
Perhaps this will work for you:
$noindex = false;
foreach( array('order','cat','mode','price','manufacturer','page','sort','limit') as $name )
{
if( isset($_GET[$name]) )
{
$noindex =...
Forum:
PHP
09-01-2012, 07:53 PM
Replies:
2
preg_match
Views:
382
Posted By
Will Bontrager
preg_match() doesn't clean up strings. Perhaps...
preg_match() doesn't clean up strings. Perhaps you're looking for preg_replace().
It appears you are working with multi-byte strings. Function mb_ereg_replace() may be the best. But I don't really...
Forum:
PHP
08-31-2012, 11:55 PM
Replies:
3
ask how to open php
Views:
389
Posted By
Will Bontrager
When researching, if you're using Mac OSX as your...
When researching, if you're using Mac OSX as your self computer, MAMP from http://www.mamp.info/ is good.
I've heard WAMP is OK for Windows machines, but I have no personal experience with it.
...
Forum:
PHP
08-31-2012, 11:43 PM
Replies:
3
Newbie but with question
Views:
360
Posted By
Will Bontrager
The WordPress.org site at...
The WordPress.org site at http://wordpress.org/extend/plugins/ has over 20,000 plugins. Perhaps you'll find what you need there.
Will
Forum:
PHP
08-31-2012, 11:41 PM
Replies:
3
this works but?
Views:
459
Posted By
Will Bontrager
Here is another way to do it. Less comparisons,...
Here is another way to do it. Less comparisons, if that's what you're looking for.
if($turkeyqtyR1 > 0)
{
switch($selectedTurkeyR1)
{
case 'TXL' : echo 'Turkey Extra large 7.5-9.0kg';...
Forum:
PHP
08-30-2012, 11:59 PM
Replies:
4
Text comparison with a list of items?
Views:
326
Posted By
Will Bontrager
This should do it. Case-insensitive. $list =...
This should do it. Case-insensitive.
$list = array("blue", "black", "red", "yellow", "brown");
$inputString = "My eyes are BLUE and my hair is black. I'm wearing brownish pants.";
foreach(...
Forum:
HTML & CSS
08-30-2012, 11:24 PM
Replies:
4
Headline HELP Please!
Views:
489
Posted By
Will Bontrager
The CSS declarationwhite-space:nowrap;prevents...
The CSS declarationwhite-space:nowrap;prevents text from wrapping.
Will
Forum:
PHP
08-29-2012, 02:00 PM
Replies:
3
Expecting user input
Views:
367
Posted By
Will Bontrager
A couple things prevent the match from working. ...
A couple things prevent the match from working.
~ $texrt has no value. I think you meant $text
~ Single quotes are literal. Use double quotes to expand variable names.
Although not harming...
Forum:
PHP
08-28-2012, 11:56 PM
Replies:
3
Expecting user input
Views:
367
Posted By
Will Bontrager
It would be good to post the code you've tried....
It would be good to post the code you've tried. Try these:
$string = "Hello!";
echo preg_match('/^Hello/i',$string) ? 'matched' : 'no match';
$string = "Hello! there";
echo...
Forum:
PHP
08-28-2012, 11:50 PM
Replies:
1
UNescaping single quotes (')??
Views:
226
Posted By
Will Bontrager
I think you are looking for stripslashes() ...
I think you are looking for stripslashes()
http://us2.php.net/manual/en/function.stripslashes.php
Otherwise, something like this can be done:
$string = str_replace("\\","",$string);
Will
Forum:
HTML & CSS
08-27-2012, 11:42 PM
Replies:
8
Centring text horizontally & vertically
Views:
1,112
Posted By
Will Bontrager
OK, I don't see a slider. Perhaps this will...
OK, I don't see a slider.
Perhaps this will help - centering both vertically and horizontally with examples.
...
Forum:
HTML & CSS
08-23-2012, 09:54 PM
Replies:
21
How to center image. Margin:auto; not working
Views:
870
Posted By
Will Bontrager
I believe auto will work to center horizontally...
I believe auto will work to center horizontally only. Something like this should work:
margin: 0 auto 0 auto;
Will
Forum:
PHP
08-23-2012, 01:37 PM
Replies:
2
Converting a word to a image
Views:
214
Posted By
Will Bontrager
It works for me. The script creates an image with...
It works for me. The script creates an image with the pixels so colored and arranged that one sees what appears to be text. But is actually not text, only an image.
Will
Forum:
PHP
08-23-2012, 01:27 PM
Replies:
7
Asynchronous HTTP Requests
Views:
584
Posted By
Will Bontrager
byrondallas and tangoforce and anyone else who...
byrondallas and tangoforce and anyone else who may be following this thread, this seems to do a good job. Although I don't have a lot to compare it to.
...
Forum:
Perl/ CGI
08-21-2012, 05:18 PM
Replies:
2
Setting up CGI on a Mac Os X..
Views:
1,882
Posted By
Will Bontrager
This is just a guess. Try putting your test...
This is just a guess. Try putting your test script into the /cgi-bin/ subdirectory.
I don't know where the http.conf file would be. The file might be updated to allow scripts to run in any public...
Forum:
PHP
08-21-2012, 12:30 PM
Replies:
7
Asynchronous HTTP Requests
Views:
584
Posted By
Will Bontrager
Right, I have never used curl before. Knowing...
Right, I have never used curl before. Knowing which functions to focus on first during my research would save me a lot of time.
What I'm doing is grabbing a bunch of RSS feeds (all http://......
Forum:
PHP
08-20-2012, 11:50 PM
Replies:
7
Asynchronous HTTP Requests
Views:
584
Posted By
Will Bontrager
Exactly what I was looking for, a place to start....
Exactly what I was looking for, a place to start.
Thank you very much, byrondallas.
Will
Showing results 1 to 25 of 123
Page 1 of 5
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
12:15 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.