User ejunker - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:33:27Z http://stackoverflow.com/feeds/user/796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1018078/testing-html-email-rendering 4 Testing HTML email rendering ejunker 2009-06-19T13:53:12Z 2009-11-25T04:32:11Z <p>Are there any good tools to easily test how HTML email will look across different email clients? I prefer something with instant feed back rather than a submit and wait service like <a href="http://litmusapp.com" rel="nofollow">http://litmusapp.com</a> Or at the very least a way to test the Outlook 2007/MS Word rendering?</p> <p>I found this related question but it doesn't specifically address testing. <a href="http://stackoverflow.com/questions/127498/what-guidelines-for-html-email-design-are-there">What guidelines for HTML email design are there?</a></p> http://stackoverflow.com/questions/1499544/linkto-create-and-destroy-a-resource-from-a-different-resource 0 link_to create and destroy a resource from a different resource ejunker 2009-09-30T17:25:40Z 2009-11-15T23:00:02Z <p>The code below is working but I want to know if there is a better way to do it. Is this the correct RESTful way to do this? Any suggestions would be helpful. The basic requirement is that I need a way to create and destroy a membership from places/show.html.erb</p> <pre><code>class Place &lt; ActiveRecord::Base has_many :memberships has_many :members, :through =&gt; :memberships, :source =&gt; :user def membership_for_user(user) self.memberships.select{|m| m.user_id == user.id} end end class User &lt; ActiveRecord::Base has_many :memberships end class Membership &lt; ActiveRecord::Base belongs_to :user belongs_to :place end class MembershipsController &lt; ApplicationController def create @membership = Membership.new({:user_id =&gt; current_user.id, :place_id =&gt; params[:place_id]}) unless @membership.save flash[:notice] = "Unable to become member." end redirect_to place_path(params[:place_id]) end def destroy @membership = Membership.find(params[:id]) place_id = @membership.place_id @membership.destroy redirect_to place_path(place_id) end end </code></pre> <p>places/show.html.erb</p> <pre><code>&lt;%= link_to 'Join', memberships_path(:place_id =&gt; @place.id), :method =&gt; :post %&gt; &lt;%= link_to 'Cancel', @place.membership_for_user(current_user), :method =&gt; :delete %&gt; </code></pre> http://stackoverflow.com/questions/96867/what-causes-tables-to-need-to-be-repaired 2 What causes tables to need to be repaired? ejunker 2008-09-18T20:56:47Z 2009-11-03T15:18:26Z <p>Every so often I get an error saying one of my tables "is marked as crashed and should be repaired". I then do a REPAIR TABLE and repair it. What causes them to be marked as crashed and how can I prevent it? I am using MyISAM tables with MySQL 5.0.45.</p> http://stackoverflow.com/questions/1324972/ajax-phpmyadmin-alternative/1663139#1663139 0 Answer by ejunker for Ajax phpmyadmin alternative? ejunker 2009-11-02T19:21:55Z 2009-11-02T19:39:30Z <p>These aren't necessarily AJAX but thought I'd list them as they may be useful to other people:</p> <ul> <li><a href="http://www.adminer.org/en/" rel="nofollow">Adminer</a></li> <li><a href="http://www.mysqlquickadmin.com/" rel="nofollow">MySQL Quick Admin</a></li> <li><a href="http://phpminiadmin.sourceforge.net/" rel="nofollow">phpminiadmin</a></li> </ul> http://stackoverflow.com/questions/1460769/dry-form-partial-for-create-and-update 1 DRY form partial for create and update ejunker 2009-09-22T15:27:30Z 2009-09-25T16:04:41Z <p>I have a _form.html.erb form partial which helps to DRY up my code but I need the form to have different labels depending on if I am creating a new user or updating an existing user.</p> <p>Here is my form partial. I don't need to show the eula checkbox during update and I also need to replace the "Create my account" submit button text to something more appropriate when doing an update.</p> <pre><code>&lt;% form_for @user do |f| %&gt; &lt;%= f.error_messages %&gt; &lt;p&gt; &lt;%= f.label :name, 'Full name' %&gt;&lt;br /&gt; &lt;%= f.text_field :name %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :username %&gt;&lt;br /&gt; &lt;%= f.text_field :username %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :email, 'Email address' %&gt;&lt;br /&gt; &lt;%= f.text_field :email %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :password %&gt;&lt;br /&gt; &lt;%= f.password_field :password %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :password_confirmation %&gt;&lt;br /&gt; &lt;%= f.password_field :password_confirmation %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.check_box :eula %&gt; &lt;%= f.label :eula, 'I agree to the terms and conditions' %&gt; &lt;/p&gt; &lt;p&gt;&lt;%= f.submit "Create my account" %&gt;&lt;/p&gt; &lt;% end %&gt; </code></pre> <p>Which one of the following is the best way to do this?</p> <ul> <li>have 2 separate form partials, one for create and one for update</li> <li>have 1 form partial but have conditional labels based on the action (is this possible?)</li> <li>factor the common part into a partial and reuse that in the create and update forms</li> </ul> <p>If I were to do conditional form how would I check which action is being performed?</p> http://stackoverflow.com/questions/61451/does-django-have-html-helpers 11 Does Django have HTML helpers? ejunker 2008-09-14T16:37:32Z 2009-09-19T17:24:21Z <p>Does Django have any template tags to generate common HTML markup? For example, I know that I can get a url using</p> <pre><code>{% url mapper.views.foo %} </code></pre> <p>But that only gives me the URL and not the HTML code to create the link. Does Django have anything similar to Rails' link_to helper? I found <a href="http://code.google.com/p/django-helpers/" rel="nofollow">django-helpers</a> but since this is a common thing I thought Django would have something built-in.</p> http://stackoverflow.com/questions/110043/how-do-i-determine-if-i-should-install-drupal-5-x-or-6-x 4 How do I determine if I should install Drupal 5.x or 6.x? ejunker 2008-09-21T02:24:27Z 2009-09-18T15:36:28Z <p>I'm planning to install Drupal. Is there any reason not to install the latest 6.x version as opposed to the 5.x branch? Are there any really good modules that are 5.x only?</p> http://stackoverflow.com/questions/1150339/rails-2-3-2-trying-to-render-erb-instead-of-haml/1382501#1382501 0 Answer by ejunker for Rails 2.3.2 trying to render ERB instead of HAML ejunker 2009-09-05T04:56:29Z 2009-09-05T04:56:29Z <p>I ran into the same problem and I had to restart my server after installing Haml before my rails app recognized the changes.</p> http://stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees 13 Higher pay for advanced degrees? ejunker 2008-08-10T19:37:12Z 2009-07-07T18:11:42Z <p>Are advanced degrees such as Master's degrees or PhDs beneficial for software engineers? Should they be compensated for their advanced degree? There are plenty of programmers that don't have a degree that are better then programmers with advanced degrees so by which metric do you rate programmers? KLOC is not a good metric. For many areas of the hard sciences there is a vast difference in salary between the people with a B.S. and those with a Master's degree and a PhD. Should it be the same for software engineers? Why or why not?</p> http://stackoverflow.com/questions/1007066/how-do-i-attach-a-stream-filter-to-echo 2 How do I attach a stream filter to echo? ejunker 2009-06-17T13:35:31Z 2009-06-19T20:49:27Z <p>Is there a way to attach a stream filter to echo so that any data that is echoed goes through the stream filter? My idea is to write an output escaping filter to protect against XSS.</p> <p>I found this bug report <a href="http://bugs.php.net/bug.php?id=30583" rel="nofollow">http://bugs.php.net/bug.php?id=30583</a> but it is from 2004 and I didn't know if this is now possible or not.</p> <pre><code>class strtoupper_filter extends php_user_filter { function filter($in, $out, &amp;$consumed, $closing) { while ($bucket = stream_bucket_make_writeable($in)) { $bucket-&gt;data = strtoupper($bucket-&gt;data); $consumed += $bucket-&gt;datalen; stream_bucket_append($out, $bucket); } return PSFS_PASS_ON; } } stream_filter_register("strtoupper", "strtoupper_filter"); $fp = fopen("php://output", "w"); stream_filter_append($fp, "strtoupper"); echo "echo: testing 123&lt;br&gt;"; print("print: testing 123&lt;br&gt;"); fwrite($fp, "fwrite: testing 123&lt;br&gt;"); </code></pre> http://stackoverflow.com/questions/163092/setting-default-values-conditional-assignment 3 Setting default values (conditional assignment) ejunker 2008-10-02T15:42:48Z 2009-06-03T13:31:12Z <p>In Ruby you can easily set a default value for a variable </p> <pre><code>x ||= "default" </code></pre> <p>The above statement will set the value of x to "default" if x is nil or false</p> <p>Is there a similar shortcut in PHP or do I have to use the longer form:</p> <pre><code>$x = (isset($x))? $x : "default"; </code></pre> <p>Are there any easier ways to handle this in PHP?</p> http://stackoverflow.com/questions/527638/getting-the-client-ip-address-remoteaddr-httpxforwardedfor-what-else-could/916157#916157 2 Answer by ejunker for Getting the client IP address: REMOTE_ADDR, HTTP_X_FORWARDED_FOR, what else could be useful? ejunker 2009-05-27T14:47:55Z 2009-05-27T14:47:55Z <p>In addition to <code>REMOTE_ADDR</code> and <code>HTTP_X_FORWARDED_FOR</code> there are some other headers that can be set such as:</p> <ul> <li><code>HTTP_CLIENT_IP</code></li> <li><code>HTTP_X_FORWARDED_FOR</code> can be comma delimited list of IPs</li> <li><code>HTTP_X_FORWARDED</code></li> <li><code>HTTP_X_CLUSTER_CLIENT_IP</code></li> <li><code>HTTP_FORWARDED_FOR</code></li> <li><code>HTTP_FORWARDED</code></li> </ul> <p>I found the code on the following site useful: <a href="http://www.grantburton.com/tag/http%5Fx%5Fforwarded%5Ffor/" rel="nofollow">http://www.grantburton.com/tag/http_x_forwarded_for/</a></p> http://stackoverflow.com/questions/290581/handling-mysql-full-text-special-characters 3 Handling MySQL Full Text Special Characters ejunker 2008-11-14T16:10:39Z 2009-05-14T00:25:09Z <p>When using MySQL full text search in boolean mode there are certain characters like + and - that are used as operators. If I do a search for something like "C++" it interprets the + as an operator. What is the best practice for dealing with these special characters?</p> <p>The current method I am using is to convert all + characters in the data to _plus. It also converts &amp;,@,/ and # characters to a textual representation.</p> http://stackoverflow.com/questions/591936/mysqliuseresult-and-concurrency 0 mysqli_use_result() and concurrency ejunker 2009-02-26T18:57:12Z 2009-02-26T21:24:37Z <p>According to the documentation at <a href="http://us3.php.net/mysqli%5Fuse%5Fresult" rel="nofollow">mysqli_use_result</a></p> <blockquote> <p>One should not use mysqli_use_result() if a lot of processing on the client side is performed, since this will tie up the server and prevent other threads from updating any tables from which the data is being fetched. </p> </blockquote> <p>Does this only pertain to myISAM tables or also for InnoDB? </p> http://stackoverflow.com/questions/507593/what-is-the-best-way-to-escape-user-output-with-the-zend-framework/512773#512773 0 Answer by ejunker for What is the best way to escape user output with the Zend Framework? ejunker 2009-02-04T18:55:39Z 2009-02-04T18:55:39Z <p>If you are concerned about security and want to automatically escape all variables similar to how Django does then you might be interested in this article.</p> <p><a href="http://codeutopia.net/blog/2007/11/10/how-to-automatically-escape-template-variables-in-zend_view/" rel="nofollow">How to automatically escape template variables in Zend_View</a></p> http://stackoverflow.com/questions/486143/a-generic-catch-all-action-in-zend-framework-can-it-be-done/496786#496786 1 Answer by ejunker for A Generic, catch-all action in Zend Framework... can it be done? ejunker 2009-01-30T19:08:52Z 2009-01-30T19:08:52Z <p>If you want to use gabriel1836's _call() method you should be able to disable the layout and view and then render whatever you want.</p> <pre><code>$this-&gt;_helper-&gt;layout()-&gt;disableLayout(); $this-&gt;_helper-&gt;viewRenderer-&gt;setNoRender(true); </code></pre> http://stackoverflow.com/questions/385837/simple-web-page-layout-and-templating-in-php/402329#402329 4 Answer by ejunker for Simple web page layout and templating in PHP ejunker 2008-12-31T04:49:53Z 2008-12-31T04:49:53Z <p><a href="http://framework.zend.com/manual/en/zend.view.html" rel="nofollow">Zend_View</a> supports layouts, partials and placeholders. Also checkout a new templating language called <a href="http://dwoo.org" rel="nofollow">Dwoo</a> which is similar to Smarty but also takes some ideas from Django templating. And finally, <a href="http://www.beberlei.de/calypso/" rel="nofollow">Calypso</a> which is a Django template language clone for PHP</p> http://stackoverflow.com/questions/395375/honor-a-cookie-in-all-open-tabs/402312#402312 1 Answer by ejunker for Honor a cookie in all open tabs ejunker 2008-12-31T04:38:25Z 2008-12-31T04:38:25Z <p>I would use the Firefox extension LiveHTTPHeaders to view the headers and verify that the cookie is being sent. </p> http://stackoverflow.com/questions/395650/url-mapping-in-php/402304#402304 1 Answer by ejunker for URL mapping in PHP? ejunker 2008-12-31T04:28:03Z 2008-12-31T04:28:03Z <p>As others have mentioned you can use mod_rewrite to do this but also you could use a front controller design pattern which is what many of the web frameworks use. Take a look at <a href="http://dev.horde.org/routes/" rel="nofollow">Horde routes</a> or <a href="http://zendframework.com/manual/en/zend.controller.router.html" rel="nofollow">Zend_Controller_Router_Rewrite</a> which can be used for MVC,</p> http://stackoverflow.com/questions/392088/call-a-function-before-outputting-headers-in-php/392436#392436 1 Answer by ejunker for Call a function before outputting headers in PHP? ejunker 2008-12-25T02:14:18Z 2008-12-25T02:14:18Z <p>I don't know if it is what you are looking for but you might want to investigate using auto_prepend_file in your php.ini or setting it in an .htaccess file. If you set an auto_prepend_file it will automatically include that file before running each script.</p> <p><a href="http://www.askapache.com/php/use-phpini-to-add-http-headers-to-output.html" rel="nofollow">auto_prepend_file</a></p> http://stackoverflow.com/questions/388080/fast-eclipse-mode-for-php/389302#389302 1 Answer by ejunker for Fast eclipse mode for PHP ejunker 2008-12-23T16:12:09Z 2008-12-23T16:12:09Z <p>Is Eclipse running from the network drive or is the file you are editing on the network drive. I run Eclipse with PHPEclipse all the time and the files I edit are on a network drive which mounts a Samba share on a Linux virtual machine and I have no problems. Eclipse depends on Java and it also takes a lot of memory. You may want to check that Java is working properly and that you aren't running out of memory. Or do an experiment and edit a file that is not on a network drive and see if it is any faster.</p> http://stackoverflow.com/questions/364989/smarty-benchmark-anyone/384192#384192 3 Answer by ejunker for Smarty benchmark, anyone? ejunker 2008-12-21T06:29:24Z 2008-12-21T06:29:24Z <p>You might also want to take at a new template library that is similar to Smarty called <a href="http://dwoo.org" rel="nofollow">Dwoo</a></p> http://stackoverflow.com/questions/366364/what-do-you-think-about-this-weird-idea-about-how-to-configure-development-stagin/384187#384187 0 Answer by ejunker for What do you think about this weird idea about how to configure development/staging/production instances? ejunker 2008-12-21T06:25:07Z 2008-12-21T06:25:07Z <p>If you want to set the environment in the vhost you can do something like</p> <pre><code>php_value ENV "development" </code></pre> <p>And then read it from the <code>$_SERVER</code> array</p> http://stackoverflow.com/questions/377776/named-parameters-caching-and-pdo/384153#384153 0 Answer by ejunker for Named parameters, caching and PDO ejunker 2008-12-21T05:53:28Z 2008-12-21T05:53:28Z <p>I'm not sure how PDO handles named parameters but if it uses MySQL prepared statements then you will need to use MySQL 5.1.17 or later if you want it to use the query cache.</p> <p><a href="http://dev.mysql.com/doc/refman/5.1/en/query-cache-how.html" rel="nofollow">MySQL Query Cache</a></p> <blockquote> <p>Before MySQL 5.1.17, prepared statements do not use the query cache. Beginning with 5.1.17, prepared statements use the query cache under certain conditions, which differ depending on the preparation method: </p> </blockquote> http://stackoverflow.com/questions/50303/persistent-db-connections-yea-or-nay/278828#278828 0 Answer by ejunker for Persistent DB Connections - Yea or Nay? ejunker 2008-11-10T19:06:22Z 2008-11-10T19:06:22Z <p>I was going to ask this same question but rather than ask the same question again I'll just add some information that I've found.</p> <ul> <li><a href="http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/" rel="nofollow">Are PHP persistent connections evil ?</a></li> <li><a href="http://us2.php.net/manual/en/features.persistent-connections.php" rel="nofollow">Persistent Database Connections</a></li> </ul> <p>It is also worth noting that the newer mysqli extension does not even include the option to use persistent database connections.</p> <p>I'm still using persitent connections at the moment but plan to switch to non-persistent in the near future.</p> http://stackoverflow.com/questions/244208/mysql-countdistinct-unexpected-results 1 MySQL COUNT(DISTINCT()) unexpected results ejunker 2008-10-28T17:59:20Z 2008-11-10T18:52:17Z <p>I'm using MySQL 5.0.45 on CentOS 5.1.</p> <p><code>SELECT DISTINCT(email) FROM newsletter</code></p> <p>Returns 217259 rows</p> <p><code>SELECT COUNT(DISTINCT(email)) FROM newsletter</code></p> <p>Returns 180698 for the count.</p> <p><code>SELECT COUNT(*) FROM (SELECT DISTINCT(email) FROM newsletter) AS foo</code></p> <p>Returns 180698 for the count.</p> <p>Shouldn't all 3 queries return the same value?</p> <p>Here is the schema of the newsletter table</p> <pre> CREATE TABLE `newsletter` ( `newsID` int(11) NOT NULL auto_increment, `email` varchar(128) NOT NULL default '', `newsletter` varchar(8) NOT NULL default '', PRIMARY KEY (`newsID`) ) ENGINE=MyISAM; </pre> <p><strong>Update:</strong> I've found that if I add a <codE>WHERE</code> clause to the first query then I get the correct results. The <codE>WHERE</code> clause is such that it will not effect the results.</p> <p><code>SELECT DISTINCT(email) FROM newsletter WHERE newsID > 0</code></p> http://stackoverflow.com/questions/842/best-way-to-implement-unit-testing-in-php/6563#6563 1 Answer by ejunker for Best way to implement unit testing in PHP ejunker 2008-08-09T02:44:09Z 2008-11-03T18:10:11Z <p>You could always use a post-commit hook of CVS or Subversion to automatically run your tests. Or use a continuous integration tool such as phpUnderControl http://www.phpundercontrol.org Xinc http://code.google.com/p/xinc/</p> http://stackoverflow.com/questions/66922/what-are-some-search-servers-out-there/252430#252430 1 Answer by ejunker for What are some Search Servers out there? ejunker 2008-10-31T02:10:13Z 2008-10-31T02:10:13Z <p>Here are some more open source search engines</p> <ul> <li><a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a></li> <li><a href="http://xapian.org/" rel="nofollow">Xapian</a></li> <li><a href="http://framework.zend.com/manual/en/zend.search.lucene.html" rel="nofollow">Zend_Search_Lucene</a></li> </ul> <p>Here are some search related tools</p> <ul> <li><p><a href="http://code.google.com/p/forage/" rel="nofollow">Forage</a> The Forage PHP5 library is an easy to use interface to multiple back end search libraries. It provides a common interface while supporting unique features in each library by allowing back-ends to support specific features or not.</p></li> <li><p><a href="http://code.google.com/p/marjory/" rel="nofollow">Marjory</a> Marjory is a webservice for indexing and searching for documents, utilizing a full-text search engine.</p></li> </ul> http://stackoverflow.com/questions/231211/using-git-how-do-i-find-modified-files-betwen-local-and-remote 8 Using Git how do I find modified files betwen local and remote ejunker 2008-10-23T19:52:30Z 2008-10-23T20:31:36Z <p>Here are 2 different questions but I think they are related.</p> <ol> <li><p>When using git how do I find which changes I have committed locally but haven't yet pushed to a remote branch? I'm looking for something similar to the Mercurial command "hg outgoing"</p></li> <li><p>When using git how do I find what changes a remote branch has prior to doing a pull? I'm looking for something similar to the Mercurial command "hg incoming"</p></li> </ol> <p>Also for 2. is there a way to see what is available and then cherry-pick the changes I want to pull?</p> http://stackoverflow.com/questions/227557/is-it-dumb-to-develop-for-lamp-on-wamp/227576#227576 1 Answer by ejunker for Is it dumb to develop for LAMP on WAMP? ejunker 2008-10-22T21:17:10Z 2008-10-22T21:17:10Z <p>Yes I would recommend developing on an environment as close to your production environment as possible. There are differences between how PHP works on Windows as compared to Linux. And other differences like how Linux handles file permissions as compared to Windows. I run the free VMWare server with a Linux virtual machine. I have a Samba share on the Linux VM that I mount as a networked drive in Windows. Then I use Eclipse on Windows as my code editor. </p> http://stackoverflow.com/questions/493634/rails-should-i-use-boolean-fields-or-relational-table/495287#495287 Comment by ejunker on Rails - Should I use boolean fields or relational table? ejunker 2009-11-06T21:37:01Z 2009-11-06T21:37:01Z Since you are using Rails I assume you might be using MySQL. To my knowledge MySQL does not support bitmap indexes. Thus if you want to find all users with a given flag then you might do a query like SELECT * FROM users WHERE (flags&amp;1 = 1) which will not use an index and do a full table scan. http://stackoverflow.com/questions/277224/how-do-i-catch-a-php-fatal-error/277230#277230 Comment by ejunker on How do I catch a PHP Fatal Error ejunker 2009-08-19T17:55:32Z 2009-08-19T17:55:32Z Won't that only work if display_errors is on? http://stackoverflow.com/questions/1018078/testing-html-email-rendering/1019214#1019214 Comment by ejunker on Testing HTML email rendering ejunker 2009-06-19T20:25:19Z 2009-06-19T20:25:19Z By &quot;instant feedback&quot; I mean something where I don't have to actually send the email to see my changes. Something similar to web browsers where I can make a change, hit refresh and see the results. Anything similar for Outlook? http://stackoverflow.com/questions/1007066/how-do-i-attach-a-stream-filter-to-echo/1007125#1007125 Comment by ejunker on How do I attach a stream filter to echo? ejunker 2009-06-17T14:20:40Z 2009-06-17T14:20:40Z Good idea except that would filter everything. If I have a PHP script that includes PHP code and HTML I would only want the stuff that PHP outputs to go through the filter and not have the HTML code filtered. http://stackoverflow.com/questions/526438/do-you-only-run-htmlspecialchars-on-output-or-is-there-other-functionality-you/530076#530076 Comment by ejunker on Do you only run htmlspecialchars() on output or is there other functionality you also do? ejunker 2009-06-17T13:53:41Z 2009-06-17T13:53:41Z 1. Filter input 2. Escape output <a href="http://shiflett.org/blog/2005/feb/my-top-two-php-security-practices" rel="nofollow">shiflett.org/blog/2005/&hellip;</a> http://stackoverflow.com/questions/341993/is-django-development-faster-than-asp-net-for-small-medium-size-apps/342020#342020 Comment by ejunker on Is Django Development faster than ASP.NET for small/medium-size apps? ejunker 2008-12-30T23:29:06Z 2008-12-30T23:29:06Z I agree with Jake. If you are working on a team and you need to meet a deadline then you don't have time to retrain the whole team to learn the new web framework. You will also not have all the knowledge that you learned by mistake and will make those same mistakes with the new web framework. http://stackoverflow.com/questions/368981/php-get-rid-of-slashes-full-path/368989#368989 Comment by ejunker on PHP get rid of slashes full path ejunker 2008-12-21T06:07:40Z 2008-12-21T06:07:40Z Instead of using / it may be best to use the more portable PATH_SEPARATOR constant