Jump to content

bgbs

Members
  • Posts

    114
  • Joined

  • Last visited

Everything posted by bgbs

  1. I wan to have the ability to change certain data on the site from one file; to modify items and not have to go into each page that reflects that description or title. So I created a php file naming it data.php In data.php I put this $phone = "1.877.894.8555"; $email = "info [at] mobirecycle.com"; Then I included data.php file into my global header like this: <?php include("data.php");?> Then in the php file I put the echo statement like this: <p><span class="bold">Mobirecycle can be contacted at:</span> <?php echo "$phone"; ?></p> What it does is just spit everything that is in the data.php file, including all the code, on the header, and nothing appears in the echo statement. What have I done wrong?
  2. I guess I figured it out, I had reshuffle some things
  3. You see, I have very limited php skills, I'm a designer by trade and coding doesn't come natural with me. Maybe you can help me modify this script that was already made by a coder sometime ago. Ok, so this script generates title for the ad page. <h1><?PHP $ad = ""; $ad = $db->get_row("SELECT user_id,title,type,body,date_update,image,uid FROM ad WHERE id = '$adid'"); // $subject = htmlspecialchars($ad->title, ENT_QUOTES); // $subject = urlencode($ad->title); $subject = str_replace('\'', '', $ad->title); $subject = str_replace('"', '', $subject); $subject = str_replace('&', 'and', $subject); $ad->user_id; $poster = $db->get_row("SELECT id,first_name,last_name,email_address,phone_office,phone_ext,phone_mobile,co_name,co_name_url,co_address3,co_city,co_state,co_country,url FROM user WHERE id = '$ad->user_id'"); echo $ad->title; ?> </h1> The echo $ad->title; is also used like this to generate title for the page <head> <title><?PHP echo $ad->title; ?></title> </head> This code works, but the problem is, the coder included that <head> information in the same page file. I would it to be included in the inc.header.php. But when I do, it doesnt render the page title. The code is meant to work only where <head> is found in the same file. How can I fix this issue?
  4. \ I guess that would be an expert way of doing it, but is there a newbie way?
  5. I'm using inc.header.php that I include in every page. Is this a proper procedure? The inc.header.php contains all my header information, because of that I can't just create different <head> information on every page since it is already included in inc.header.php. But, how do I make it unique? Should I just not include <head> info in inc.header.php and instead include it in every page? But that solution is too lengthy to implement if you have 50 pages. Or is there a dynamic way of generating unique <head> meta information from page description and title. Please let me know Ben
  6. wow, I think I solved my own topic. I guess the issue was with the code sinplet above, I shouldnt have wrapped it in css like I did.
  7. Does anyone know what goes wrong in the process with this php code? This code seems to be causing it: <?PHP } else { echo " <div class='back-title'><a href='/directory.php' ><h3>Back to Map</h3></a></div>"; } ?> </div> What happens is that the footer css jumps in front of the search results. Other than that the pages renders fine. Only when you make a search and results appear, the css gets screwed up. <div id="dir-search-bar"> <form id="form1" name="form1" method="post" action="directory.php"> <div id="dir-search-box"><div class="search-title">Search Company or Browse by Map</div> <div id="search-box-container"> <div class="search-left"><img src="images/search-left.png" /></div> <div class="search-center"> <select name="searchwhat" > <option value="company_name">Company Name</option> <option value="phone_number">Phone Number</option> <option value="mobile_number">Mobile Number</option> <option value="email">Email</option> <option value="person_firstname">First Name</option> <option value="person_lastname">Last Name</option> </select> <input name="searchterm" type="text" class="search-input" size="30" /> <input type="submit" name="button" id="button" value="Search" /> <input name="action" type="hidden" id="action" value="search" /> <?PHP if ($action != "search") { ?> </div> <!--<end of #search-center >--> <div class="search-right"><img src="images/search-right.png" /></div> </div><!--<end of #search-box-container >--> </div> <!--<end of #dir-search-box >--> <div class="map-title">Click on Continent to Browse by Map</div> <div align="center"><img src="images/worldmap.gif" alt="Map of the World" width=450 height=254 border="0" usemap="#worldmap" /> <map name="worldmap" id="worldmap"> <area shape="poly" coords="45,78,75,92,116,92,115,115,90,123,54,113" href="usmap.php" alt="North America" /> <area shape="poly" coords="106,146" href="#" /> <area shape="poly" coords="106,141,105,144,156,179,118,248,108,225,96,163" href="map.php?continent=southamerica&action=list" alt="South America" /> <area shape="poly" coords="129,173" href="#" /> <area shape="poly" coords="246,44,294,39,288,84,272,104,253,107,234,106,199,106,204,73" href="map.php?continent=europe&action=list" alt="Europe" /> <area shape="poly" coords="299,37,438,47,405,118,402,175,360,177,318,152,317,115,284,96" href="map.php?continent=asia&action=list" alt="Asia" /> <area shape="poly" coords="261,108,284,101,302,109,312,121,274,146" href="map.php?continent=middleeast&action=list" alt="Middle East" /> <area shape="poly" coords="195,117,225,110,253,118,273,149,276,160,276,206,242,220,194,149" href="map.php?continent=africa&action=list" alt="Africa" /> <area shape="poly" coords="380,188,416,170,444,197,441,243,375,236,361,202" href="map.php?continent=australia&action=list" alt="Australia and Pacific Ocean" /> <area shape="poly" coords="42,30,149,47,127,89,81,90,45,78" href="map.php?country=CA&action=list" alt="Canada" /> <area shape="poly" coords="56,119,96,149,103,133,78,121" href="map.php?country=MX&action=list" alt="Mexico" /> </map> <?PHP } else { echo " <div class='back-title'><a href='/directory.php' ><h3>Back to Map</h3></a></div>"; } ?> </div> </form> <div id="search-results"> <?php if ($action == "search") { $searchterm = trim($searchterm); $searchwhat = trim($searchwhat); echo "<BR><BR>"; if (empty($mem->mem_type_id)) { echo "<a href=payment.php >To view company detail, please upgrade your membership by clicking here</a><br><BR>"; } echo "<b> You searched for '".$searchterm."':"; echo "<BR><BR>"; if ($searchwhat == "company_name") { $searchwhat = "co_name"; } if ($searchwhat == "phone_number") { $searchwhat = "phone_office"; } if ($searchwhat =="mobile_number") { $searchwhat = "phone_mobile"; } if ($searchwhat == "email") { $searchwhat = "email_address"; } if ($searchwhat == "person_firstname") { $searchwhat = "first_name"; } if ($searchwhat == "person_lastname") { $searchwhat = "last_name"; } $sql2 = "SELECT DISTINCT co_name, id FROM user WHERE $searchwhat LIKE '%$searchterm%' AND approved != 'No' AND deleted != 'Yes' ORDER BY co_name ASC"; // echo "<BR><BR>sql2: ".$sql2 ."<BR><BR>"; @$companies = $db->get_results($sql2); if (!empty($searchwhat) AND !empty($searchterm) AND !empty($companies)) { foreach ( $companies as $company ) { @$co_id = $db->get_row("SELECT id,date_update,co_name_url FROM user WHERE co_name = '$company->co_name' AND id = '$company->id' LIMIT 1"); if (!empty($mem->mem_type_id)) { if ($admin == "yes") { echo "- <a href=http://".$co_id->co_name_url.".wassociation.com/ rel=nofollow>$company->co_name</a> Updated: $co_id->date_update <a href=\"trade/admin_delete_user.php?deleteid=$co_id->id\" >Delete</a> <a href=\"trade/admin_edit_user.php?editid=$co_id->id\" >Edit</a><br><BR>"; } else { echo "- <a href=http://".$co_id->co_name_url.".wassociation.com/ rel=nofollow >$company->co_name</a><br><BR>"; } } else { echo "- $company->co_name<br><BR>"; } } } else { echo "No results."; } /* $result_map = mysql_query($sql_map); echo "<BR><BR>"; echo "<b> You searched for '".$mapState."':"; echo "<BR><BR>"; while ($row_map = mysql_fetch_array($result_map)) { $mapCoTradeName = $row_map["CoTradeName"]; $mapUID = $row_map["uid"]; echo "- <a href=mem.companyinfo.php?mapCompany=$mapUID>$mapCoTradeName</a><br><BR>"; } */ } ?> </div><!-- END of #Search-Results --> </div><!--<end of #dir-search-bar >--> [color=red] <div id="footer"><?php include "inc.footer.php"; ?></div>[/color]
  8. All I want to do is to do is have the inside block stuff disappear when there is no inventory listed. The images that I pasted above into this topic show exactly what I want the php to do. Your solution kind of does it already, except that when it does show the inventory content it just dumps it without tables and css.
  9. Lemmin's logic seems to work, but all it does is spit table-less data in the block. It disregards all formatting and tables. Your logic, on the other hand does not work for me, no matter how I lay it out. I put: <?PHP if (!$item) { ?> above the <div class="account-left-column-content"> and <?php } else { echo "User has no Inventory"; } ?> in the end of the </div> statement The Result: Parse Error.
  10. Yes there was one extra div I had to remove. When you say to end the else statement you mean to do this right? <?PHP } ?> When I do this, it still gives me parse error.
  11. I think I'm doing something wrong. I get a parse error when I add your code, and I think that is because the if and else statement should be included in one php bracket but I have other php code inside it and so that causes a mix up and gives me another parse error. Let me show you how I placed your code, and maybe we can go from there to get it properly adjusted. Your code is in purple <div class="account-left-column"><div><img src="images/account-left-column-back-top.gif" alt="" /></div> <div class="account-left-column-header">Inventory Wizard Items</div> <?PHP if (!$item) { ?> <div class="account-left-column-content"> <form action="search.php" method="get" > <p>Search <?PHP echo $vuser->co_name; ?> Inventory:</p> <input type="text" name="q" size="30" maxlength="250" accesskey="S" /> <input name="Submit" type="submit" class="button" value="SEARCH" /> <input name="onlyinventory" type="hidden" value="yes" /> <input name="searchuserid" type="hidden" value="<?PHP echo $v_id; ?>" /> </form> <table width="260" align="left" cellpadding="2" cellspacing="2"> <tr> <td colspan="6" align="left" valign="top"> <p>Last 10 inventory items added:</p> </td> </tr> <tr> <td colspan="3" align="left" valign="top"> </td> </tr> <tr> <td align="left" valign="top"><strong>Category</strong></td> <td align="left" valign="top"><strong>Model</strong></td> <td align="left" valign="top"><strong>Description</strong></td> </tr> <?php } $inventories = $db->get_results("SELECT id,category,brand,model,description,qty,price,price_negotiable,picture_1,picture_2,inventory_timestamp FROM inventory where user_id in ($allempids) and status = 'active' order by id desc limit 10 "); if ($inventories) { foreach ( $inventories as $invt ) { $selected_category_phone = ""; $selected_category_accessory = ""; $selected_category_parts = ""; if ($invt->category == "phone"){$selected_category_phone = ' selected="selected" '; } if ($invt->category == "accessory"){$selected_category_accessory = ' selected="selected" '; } if ($invt->category == "parts"){$selected_category_parts = ' selected="selected" '; } if (!$item) { $invt->description = substr($invt->description,0,25); ?> <tr onmouseover="this.bgColor='#f1f0f0'" onmouseout="this.bgColor='#FFFFFF'"> <td align="left" valign="top"> <?PHP echo $invt->category; ?> </td> <td align="left" valign="top"> <?PHP echo $invt->model; ?></td> <td align="left" valign="top"> <a href="inventory.php?view_id=<?PHP echo $v_id; ?>&item=<?PHP echo $invt->id; ?>"> <?PHP echo $invt->description; ?>...</a></td> </tr> <?php } else { ?> <?php } } } ?> </table> <div class="account-button"><a href="inventory.php?view_id=<?PHP echo $v_id; ?>">See All Inventory</a></div> <?php } else { echo "User has no Inventory"; } ?>
  12. Hello Paystey, I appreciate you taking the time with this issue. Its still not working, what it does it just removes data for the description column from the user who has inventory, the other user's who dont have inventory are not effected. I hope I described what I'm trying to accomplish here correctly. Here are the Three image examples. First Image is displaying the "Inventory Wizard" correctly, no issues here. The Second pic shows what the empty box, with no inventory, looks like right now. The third pic shows the example of what I would like it to look like when there is no inventory listed Just the box with one simple message.
  13. if I do that then it makes the whole block dissapear, but when the person has inventory listed, it just dumps it without block and styling.
  14. I'm trying to find a way to have the php code display a message if there is no inventory listed in the box, I just want it to say something like "User has no inventory listed" You can see the actual box http://modern-wireless-inc.wassociation.com titled Inventory Wizard. Its on the right. I want all the content in the box disappear if there is nothing in the inventory and only display the message. Is it hard to do? <?PHP if (!$item) { ?> <div class="account-left-column"><div><img src="images/account-left-column-back-top.gif" alt="" /></div> <div class="account-left-column-header">Inventory Wizard Items</div> <div class="account-left-column-content"> <form action="search.php" method="get" > <p>Search <?PHP echo $vuser->co_name; ?> Inventory:</p> <input type="text" name="q" size="30" maxlength="250" accesskey="S" /> <input name="Submit" type="submit" class="button" value="SEARCH" /> <input name="onlyinventory" type="hidden" value="yes" /> <input name="searchuserid" type="hidden" value="<?PHP echo $v_id; ?>" /> </form> <table width="260" align="left" cellpadding="2" cellspacing="2"> <tr> <td colspan="6" align="left" valign="top"> <p>Last 10 inventory items added:</p> </td> </tr> <tr> <td colspan="3" align="left" valign="top"> </td> </tr> <tr> <td align="left" valign="top"><strong>Category</strong></td> <td align="left" valign="top"><strong>Model</strong></td> <td align="left" valign="top"><strong>Description</strong></td> </tr> <?php } $inventories = $db->get_results("SELECT id,category,brand,model,description,qty,price,price_negotiable,picture_1,picture_2,inventory_timestamp FROM inventory where user_id in ($allempids) and status = 'active' order by id desc limit 10 "); if ($inventories) { foreach ( $inventories as $invt ) { $selected_category_phone = ""; $selected_category_accessory = ""; $selected_category_parts = ""; if ($invt->category == "phone"){$selected_category_phone = ' selected="selected" '; } if ($invt->category == "accessory"){$selected_category_accessory = ' selected="selected" '; } if ($invt->category == "parts"){$selected_category_parts = ' selected="selected" '; } if (!$item) { $invt->description = substr($invt->description,0,25); ?> <tr onmouseover="this.bgColor='#f1f0f0'" onmouseout="this.bgColor='#FFFFFF'"> <td align="left" valign="top"> <?PHP echo $invt->category; ?> </td> <td align="left" valign="top"> <?PHP echo $invt->model; ?></td> <td align="left" valign="top"> <a href="inventory.php?view_id=<?PHP echo $v_id; ?>&item=<?PHP echo $invt->id; ?>"> <?PHP echo $invt->description; ?>...</a></td> </tr> <?php } else { ?> <?php } } } ?> </table> <div class="account-button"><a href="inventory.php?view_id=<?PHP echo $v_id; ?>">See All Inventory</a></div></div> <!-- end of .account-left-column --> <div><img src="images/account-left-column-back-bottom.gif" alt=""/></div></div>
  15. wow that was fast, amazing. That worked
  16. This is a tough echo statement for me, and I don't know how to wrap <div></div> around it. Another words I dont know where it supposed to get inserted. I tried different ways and I get syntax errors and others. echo date("M j, y g:i a", strtotime($ad->date_submit));
  17. I guess it was my mistake because in <div> element I shouldn't have used quotes when specifying class but apostrophes
  18. I'm trying to figure out how I would put css code in echo statement. When I tried echo "<div>Office Phone: $vuser->phone_office $vuser->phone_ext<img src='images/icon_verified.gif' alt='verified logo' width='63' height='16'></div>"; I got syntax error. Original code below if($office_phone_verified == "Yes") { echo "Office Phone: $vuser->phone_office $vuser->phone_ext<img src='images/icon_verified.gif' alt='verified logo' width='63' height='16'>"; } Anybody know?
  19. I see this php code used sometimes, and I dont know in what circumstance it is used in, and what it does? What I'm doing is I am rewriting the site from html tables to css. and I see this code used through out tables right now. Example below. <?PHP include('inc.submembers.php'); ?> </td></tr> <?PHP } ?>
  20. I had the closing span tag in code I just forgot to include it in here Thanks for your help the link works perfectly now. I had to do one css adjustment and thats all. Thanks man. Ben
  21. I need help with this php tag. It is located on my site on homepage bibikova.com where the three Latest Images are located. I want to be able to link those images to their proper post. I was able to do the image titles below the images, but I want people to be able to click on images too. When I applied href tag around the image it does something to css borders, I just wanted to see if any of you guys know the proper and easiest way to fix my dilemma. Here is the code below. <img src="<?php bloginfo('template_url'); ?>/timthumb.php?src=<? echo get_post_meta($post->ID, 'post_image_value', true) ?>&w=190&zc=1" alt=" <?php the_title(); ?>"/></div> <span class="featured-image-text"><a href="<? the_permalink() ?>" rel="bookmark" title="Go to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
  22. I have this plugin developed by zenphoto I Included that plugin file into the page like this: What the plugin does is call out 5 image thumbs from the included plugin and spits them on the page. Where I run into problem is I dont know how to code that php tag so that it will show the images in the body. The code that comes from the plugin is: void printLatestImages( [string $number = 5], [string $albumfolder = ''], [bool $showtitle = false], [bool $showdate = false], [bool $showdesc = false], [integer $desclength = 40], [string $showstatistic = ''], [integer $width = 85], [integer $height = 85], [bool $crop = true], [bool $collection = false] ) So I have to use that code above and create the PHP script to call out thumbnails. Im a newbie in this php coding and I have no idea how to code this. I have talked to the zenphoto guys on their forums, but they assume that I know how to code in php, and so their answers leave me clueless. I need help from experts. You can view my original forum conversation at zenphoto at http://www.zenphoto.org/support/topic.php?id=5101 I think this will help you better figure out what I'm trying to say here. Any help is appreciated Thanks ahead of time for your support Ben
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.