close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

I have a "location" field in my database and I would like to output only a portion of that field (the part before a "-".

Thread began 5/23/2016 12:40 pm by Daniel | Last modified 5/24/2016 11:21 am by Ray Borduin | 1259 views | 5 replies |

Daniel

I have a "location" field in my database and I would like to output only a portion of that field (the part before a "-".

I have a "location" field in my database and I would like to output only a portion of that field. The format is "City","State" - "other information" I would like to only output the portion of the field to the left of the "-" (only city and state not the other information. )

Here is the code I am currently using...

<a href="https://www.priceline.com/stay/#/search/hotels/<?php echo($row_WADAallshows2['location']); ?>/<?php echo(($row_WADAallshows2['showbegin'] && date('Ymd',strtotime($row_WADAallshows2['showbegin'])) != "11/30/-0001")?date('Ymd',strtotime($row_WADAallshows2['showbegin'])):''); ?>/<?php echo(($row_WADAallshows2['showend'] && date('Ymd',strtotime($row_WADAallshows2['showend'])) != "11/30/-0001")?date('Ymd',strtotime($row_WADAallshows2['showend'])):''); ?>/1?searchType=CITY&page=1" target="_blank"><strong>(Hotels)</strong></a>

"I only want to output the City & State to Priceline"

Attached Files
allshows2_detail-with hotels 2.php
Sign in to reply to this post

Ray BorduinWebAssist

You can use substr() and strpos() to show only the data to the left of a certain character... so it might look something like:

php:
<?php echo(substr($row_WADAallshows2['location'],0,strpos($row_WADAallshows2['showbegin'],"-")); ?>
Sign in to reply to this post
Did this help? Tips are appreciated...

Daniel

Now it won't send anything for the City name... here is what I did...

<a href="https://www.priceline.com/stay/#/search/hotels/<?php echo(substr($row_WADAallshows2['location'],0,strpos($row_WADAallshows2['showbegin'],"-")&& date('Ymd',strtotime($row_WADAallshows2['showbegin'])) != "11/30/-0001")?date('Ymd',strtotime($row_WADAallshows2['showbegin'])):''); ?>/<?php echo(($row_WADAallshows2['showend'] && date('Ymd',strtotime($row_WADAallshows2['showend'])) != "11/30/-0001")?date('Ymd',strtotime($row_WADAallshows2['showend'])):''); ?>/1?searchType=CITY&page=1" target="_blank"><strong>(Hotels)</strong></a>

I had to take out ); ?> where you had it because the code hint in Dreamweaver said there was a problem

Sign in to reply to this post

Daniel

I got the code to work!

Hello Ray... well I fiddled and fiddled with it until I got the code to work! I needed to define the " - " in location rather than showbegin.

After doing all that and getting it to function, I realized that not every record in my database has a " - " after the location. They all do however have a "," right before the two character state. I realize this code with the strrpos can limit the end of a string by defining a character. But if there is no " - " then it returns an error and passes no information to Priceline (or whatever I choose). So how can I define a "," in the string and then choose infinite characters to the left of the comma and three characters to the right and include the comma in the results.

Sign in to reply to this post

Ray BorduinWebAssist

php:
<?php echo substr($row_WADAallshows2['location'] ,0,strrpos($row_WADAallshows2['location'], ',')+3); ?>
Sign in to reply to this post
Did this help? Tips are appreciated...

Daniel

Works Perfectly!!!!!

You did it again Ray! This works perfectly! My solution worked as long as there were hyphens in the record. But this saves me from having to put hyphens in 5000 records!!!!

Thanks again... you always are such a tremendous help. Now on to the next feature!!! I'm sure I'll be writing back after I've pulled out what's left of my hair....

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...