Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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

 
Forum Jump

All times are GMT +1. The time now is 12:15 PM.