active questions tagged get - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:46:13Z http://stackoverflow.com/feeds/tag/get http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1815628/static-fields-question 1 Static fields question Darkmage 2009-11-29T14:12:30Z 2009-11-29T14:21:49Z <p>im trying to understand the get and set properties for fields, and run in to this issue, can somone explaine to me why i had to make the int X field Static to make this work?</p> <pre><code>using System; namespace ConsoleApplication1 { class Program { public static int X = 30; public static void Main() { var cX = new testme(); cX.intX = 12; Console.WriteLine(cX.intX); cX.intX = X; Console.WriteLine(cX.intX); Console.ReadKey(); } } class testme { public int intX { get; set; } } } </code></pre> http://stackoverflow.com/questions/716216/how-to-create-a-form-in-sharepoint-that-modifies-query-string 0 How to create a form in SharePoint that modifies query string Karim 2009-04-04T00:58:04Z 2009-11-29T14:00:03Z <p>My request is simple.</p> <p>i want to put a form (a text field let's say) on a sharepoint page, with a submit button.</p> <p>when i submit. I want the URL to be reposted with the s="textfromtextfield" </p> <p>say i was on a url <a href="http://site/site.aspx?p=x" rel="nofollow">http://site/site.aspx?p=x</a></p> <p>clicking submit will take me to:</p> <p><a href="http://site/site.aspx?p=x&amp;s=" rel="nofollow">http://site/site.aspx?p=x&amp;s=</a>"textfromtextfield"</p> http://stackoverflow.com/questions/1814544/how-can-i-do-a-sort-and-search-using-both-get-and-post-variables 0 How can I do a sort and search using both GET and POST variables? Chris 2009-11-29T03:24:44Z 2009-11-29T06:06:07Z <p>I am currently using column header's as links that when clicked will sort the results by the column name by adding a get variable to the url. Here is an example:</p> <pre><code>&lt;a href=" &lt;?php // Sorts by order id. If already sorted by order id, then it will change the link to sort descending if(!isset($_GET['sortby']) || $_GET['sortby'] != 'order_id'){ echo $_SERVER['SCRIPT_NAME'] . '?sortby=order_id'; //example: tracker.php?sortby=order_id } elseif(isset($_GET['sortby']) || $_GET['sortby'] == 'order_id'){ echo $_SERVER['SCRIPT_NAME'] . '?sortby=order_id_desc'; //example: tracker.php?sortby=order_id_desc }?&gt; "&gt;Order ID&lt;/a&gt; </code></pre> <p>I also have a form where users can enter pick a category from a selectbox and then enter a searchterm. I am using if statements and switch statements to check if the $_GET['sortby'] variable and the $_POST['search_submit'] variable is set and if so, to run a certain sql statement based on the value of the GET variable.</p> <p>There are 4 different scenarios. </p> <p><strong>1. Default: If neither sort nor search is set</strong>. This one works fine:</p> <pre><code>if(!isset($_GET['sortby']) &amp;&amp; !isset($_POST['search_submit'])){ //Default, If no sort or search is set $sql = 'SELECT * FROM orders ORDER BY order_id DESC'; } </code></pre> <p><strong>2. If the search is set but the sort is not</strong>. This one works fine:</p> <pre><code>if(isset($_POST['search_submit'])) { $search_string = ' WHERE ' . $_POST['searchby'] . '= "' . $_POST['search_input'] . '" '; } if(!isset($_GET['sortby']) &amp;&amp; isset($_POST['search_submit']) ){ //If the search is set but no sort $sql = "SELECT * FROM orders" . $search_string . "ORDER BY order_id DESC"; } </code></pre> <p><strong>3. If the sort is set, but the search is not</strong>. This one works fine:</p> <pre><code>if(isset($_GET['sortby']) &amp;&amp; !isset($_POST['search_submit'])) { //If the sort is set but no search switch ($_GET['sortby']) { case "order_id": $sql = "SELECT * FROM orders ORDER BY order_id ASC"; break; case "order_id_desc": $sql = "SELECT * FROM orders ORDER BY order_id DESC"; break; } } </code></pre> <p><strong>4. If the search AND sort is set.</strong> All 3 of the above if statements work, but the last one is giving me problems.</p> <pre><code>if(isset($_GET['sortby']) &amp;&amp; isset($_POST['search_submit'])) { //If the sort AND search is set switch ($_GET['sortby']) { case "order_id": $sql = "SELECT * FROM orders" . $search_string . "ORDER BY order_id ASC"; break; case "order_id_desc": $sql = "SELECT * FROM orders" . $search_string . "ORDER BY order_id DESC"; break; } } </code></pre> <p>What happens is that you can search, but as soon as you click on one of the column headers and it reloads the page with the new GET variable, it will get rid of the current POST variable, thereby showing all results again. I tried to load the current POST variable into a session after the $_POST['search_submit'] isset and then make the last if statement check to see if the session variable is set, but what happens then is that the session is always set and if i try to go back to the homepage, it will keep those search results. </p> <p>Perhaps I need to destroy the session somewhere? Perhaps there is an overall better approach I could be taking to combining sort and search features? </p> http://stackoverflow.com/questions/1809658/escaping-user-data-without-magic-quotes 2 Escaping user data, without magic quotes Dan Peddle 2009-11-27T16:33:09Z 2009-11-27T16:55:50Z <p>Hey,</p> <p>I'm taking a look at how to properly escape data that comes from the outside world before it gets used either for application control, storage, logic.. that kind of thing.</p> <p>Obviously, with the magic quotes directive being deprecated shortly in php 5.3.0+, and removed in php6, this becomes more pressing, for anyone looking to upgrade and get into the new language features, while maintaining legacy code (don't we love it..).</p> <p>However, one thing that I haven't seen is much discussion about theory/best practice with what to do once you have protected your data - for example, to store with or without slashes? I personally think keeping escaped data in the DB is a bad move, but want to hear discussion and read some case studies preferably.. </p> <p>Some links from the PHP manual just for reference:</p> <p><a href="http://php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">PHP Manual - <code>mysql_real_escape_string</code></a></p> <p><a href="http://php.net/manual/en/function.htmlspecialchars.php" rel="nofollow">PHP Manual - <code>htmlspecialchars</code></a></p> <p>etc etc.</p> <p>Any tips?</p> http://stackoverflow.com/questions/1359240/php-get-and-post-undefined-problem 0 PHP $_GET and $_POST undefined problem Hooray Jay 2009-08-31T20:23:31Z 2009-11-27T08:36:41Z <p>I'm new to PHP so I apologize if this is a simple problem...</p> <p>I am moving a PHP site from one server to another. The new server is IIS 7.0, PHP 5.2.1, with short open tag turned "On", and I don't know how the original server was set-up (I was just given the code).</p> <p>The following is the very first section of code on one of the pages:</p> <pre><code>&lt;? ob_start(); session_start(); if($_GET['confirm'] == 13 || $_GET['confirm'] == 14 || $_GET['confirm'] == 15 || $_GET['confirm'] == 16) { include("test/query/test_query.php"); } ?&gt; </code></pre> <p>When this page executes, the following error is always shown:</p> <blockquote> <p>PHP Notice: Undefined index: confirm in [file location].php on line 6</p> </blockquote> <p>Also, users access this page by being redirected from the home page (which is a standard HTML page). The full URL when properly navigated to is the following:</p> <blockquote> <p><a href="http://www.%5Bsite%5D.com/test.php#login" rel="nofollow">http://www.%5Bsite%5D.com/test.php#login</a></p> </blockquote> <p>... I understand why the error is thrown. What I don't understand is how this code could ever work as it does on the original server. Could I be missing a configuration setting?</p> <p>*This same issue happens in dozens of locations all over the site. This is just one specific occurrence of the issue. </p> http://stackoverflow.com/questions/1804007/multiple-callback-on-get 0 Multiple callback on $.get marc-andre menard 2009-11-26T14:33:14Z 2009-11-26T14:41:10Z <p>here is the code :</p> <pre><code>&lt;script&gt; $(document).ready(function(){ $.get("realisations.shtml",function(data){$('#realisations').empty().append(data)}); }); &lt;/script&gt; </code></pre> <p>I need to execute $(".toexpand").hide(); after beeing sure the data is loaded into the div</p> <p>this try dont work : </p> <pre><code>&lt;script&gt; $(document).ready(function(){ $.get("realisations.shtml",function(data){$('#realisations').empty().append(data)},function(){$(".toexpand").hide()}); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1793520/php-losing-data-for-two-variables 0 PHP losing data for two variables Clem 2009-11-24T22:55:16Z 2009-11-25T15:34:18Z <p>I have two scripts that I'm working on. The first receives $agentID via GET (as well as some other data via other GET variables), then looks up $firstName and $lastName in a database by $agentID. Once done, it displays $firstName, $lastName and $agentID on the screen, as text in a form (not in a form input). After the form is submitted, $agentID and the form data are to be written to the database as part of a new record, then $agentID, $firstName, $lastName, and the form data are stored in SESSION variables so the data can be displayed on a confirmation page. The trouble I'm having is that $agentID, $firstName, $lastName are not written to the database, to SESSION variables, <em>and</em> it won't even put the values in an email! Both scripts start a session as the first thing. I've checked the first script over and over to make sure the variables aren't being over-written, unset, or anything.</p> <p>Here's some code and I hope someone can see what I apparently am not. This is from the first script:</p> <pre><code>session_start(); $mySQLdb = EstablishConnection("table"); $agentID = $_GET['agent']; $agentData = SurveyAgent($agentID); $agentDataArray = explode(".", $agentData); $agentFirstName = $agentDataArray[0]; $agentLastName = $agentDataArray[1]; $agentFullName = $agentFirstName." ".$agentLastName; </code></pre> <p>The call to SurveyAgent establishes its own connection to the database, using the same code as the first line in the previous block. SurveyAgent() is in an included file. Here's the important bits from SurveyAgent():</p> <pre><code>$mySQLselect = "SELECT lname, fname FROM table WHERE id_no='$userID';"; $sponsorData = $mySQLrow[1].".".$mySQLrow[0]; return $sponsorData; </code></pre> <p>I had originally put the data returned from the database into an array and returned the array, but when things weren't working, I changed it to just concatenating the two pieces with a period between to use explode (as the code currently does). Finally, the first script wraps up this way (after the write to the database):</p> <pre><code>$_SESSION['agentID'] = $agentID; $_SESSION['agentName'] = $agentFullName; $body = $agentFullName.", ".$agentID; mail("email@address", "test", $body, "From: email@address"); header("Location: http://www.domain.com/path/to/script.php"); </code></pre> <p>The second script starts like this:</p> <pre><code>session_start(); $agentID = $_SESSION['agentID']; $agentName = $_SESSION['agentName']; </code></pre> <p>The second script receives several other variables via SESSION from the first script. $agentID and $agentName are the only two variables I am having trouble with. I have tried changing the variables' names, including the SESSION keys' names. If I hard-code the value of $agentID, instead of receiving it via GET, everything works fine. It makes no sense to me why the first script is displaying the data received via GET and the database query, but won't pass them anywhere. Any help is appreciated. If I need to post more code, I will do that. Thanks!</p> http://stackoverflow.com/questions/1796882/php-dealing-with-get-and-post-arrays 0 PHP - Dealing with GET and POST arrays cesko80 2009-11-25T13:22:07Z 2009-11-25T13:55:56Z <p>In my webapp I have a page called display.php. The script in this page behaves in different ways depending on POST and GET array content/existence, let's say: If I call this page and GET array isset, the script'll load a record using $_GET['id'], in another case, if no GET isset but isset a ceratin POST key the script'll load a random record from the DB... and so on. </p> <p>At the top of my page I've added this simple(trivial) code:</p> <pre><code>//random loading if(!isset($_GET['id']) &amp;&amp; !isset($_POST["MM_update"])){ ## $fresh_call=true; $saving_call=false; $pick_a_call=false; ## $_SESSION['call_id']=time().$_GET['operatore']; $call_id=$_SESSION['call_id']; //I need to load a specified record }else if (isset($_GET['id']) &amp;&amp; !isset($_POST["MM_update"])) { ## $pick_a_call=true; $saving_call=false; $fresh_call=false; ## $_SESSION['call_id']=$_GET['id']; $call_id=$_SESSION['call_id']; //update the record }else if (!isset($_GET['id']) &amp;&amp; isset($_POST["MM_update"])){ ## $saving_call=true; $pick_a_call=false; $fresh_call=false; ## $call_id=$_POST['call_id']; } </code></pre> <p>In display.php there's also a form that self-post data to display.php for record update (last condition in the code). </p> <p>In rest of the script I'm checking $fresh_call, $saving_call, $pick_a_call values to query the db with the right UPDATE/INSERT/SELECT SQL.</p> <p>I'm not sure about my solution, I would like to design a class that can help me making my script more "clear" and lighter. I think also that this situation is probably a typical proplem to solve in PHP coding.</p> http://stackoverflow.com/questions/1792861/accessing-an-asp-net-web-service-with-classic-asp 0 Accessing an asp.net web service with classic asp thchaver 2009-11-24T20:54:58Z 2009-11-25T13:24:59Z <p>My company is considering working with another company on a particular module. Information would be sent back and forth between us through my web service. Thing is, my web service uses ASP.NET, and they use classic ASP. Everything I've found online says (it's a pain, but) they can communicate, but I'm not clear on some details.</p> <p>Specifically, do I have to enable GET and POST on my web service? If I don't <em>have</em> to, but could, would enabling them make the communication significantly easier/better? And finally, GET and POST are disabled by default because of security. What are the security risks involved in enabling them?</p> http://stackoverflow.com/questions/1782310/php-get-question-calling-from-a-post-call 0 PHP GET question - calling from a POST call Riddle 2009-11-23T10:40:01Z 2009-11-23T10:51:41Z <p>I have a quick question i hope you guys can answer, i've got a search system that uses POST to do searches, now i want to track queries using Google Analytics but it requires using GET url parameters to pull parameters out the URL, what i don't want to do is rewrite the entire search system to use GET instead of POST. Is there any way around this? I was thinking maybe i can make a GET call to a new page from the page that recieves the search POSTs, but i don't want it to redirect, i merely want it to "hit" the url without actually redirecting?</p> <p>Is this possible?</p> <p>Any other solutions would also be appreciated.</p> <p>Thanks for the help</p> http://stackoverflow.com/questions/1536362/redirect-get-data-from-a-page-using-post-to-another-page 0 Redirect GET data from a page using POST to another page andreeib 2009-10-08T08:15:18Z 2009-11-21T23:16:55Z <p>Hi I have a php srcript that receives GET data and I want to redirect the data from GET to another page in wordpress using POST. It's that possible, and how?</p> <p>Thank's for the help. </p> http://stackoverflow.com/questions/1744131/in-jscript-is-it-possible-to-implement-getters-and-setters-that-look-like-object 2 In JScript, is it possible to implement getters and setters that look like object properties from the outside? hillu 2009-11-16T18:56:51Z 2009-11-21T15:20:54Z <p>While trying to port and generally playing around with some non-browser code, I came across getters and setters that looked like normal object properties. Something like this:</p> <pre><code>js&gt; var o = { a: 4, get b(){ return this.a + 3; }, set b(val){ this.a = val - 3; } }; js&gt; o.a 4 js&gt; o.b 7 js&gt; o.b=10 10 js&gt; o.a 7 </code></pre> <p>This seems to work in recent versions of Rhino and Spidermonkey, but is it possible to implement or simulate the behavior (the defining syntax is less important to me) in JScript (Windows Script Host)?</p> http://stackoverflow.com/questions/1768291/cant-use-get-in-codeigniter 0 Can't use Get in CodeIgniter Bobby 2009-11-20T04:10:27Z 2009-11-21T14:54:18Z <p>So I'm using codeigniter and I've had very letter experience with it so far but here's my issue.</p> <p>I have an if statement I've set up that says if (@$_GET['f'] == 'callback') then do something, if not, do something else.</p> <p>So basically my URL ends up looking like this:</p> <p><a href="http://localhost/finalproject/myspacedev/index?f=start" rel="nofollow">http://localhost/finalproject/myspacedev/index?f=start</a></p> <p>and all I get is a 404 page. I've tried turning on get in the config, done a bunch of reading on here about using the uri segment class in CI, but all I get are 404 errors. What am I doing wrong here? It's driving me nuts!</p> http://stackoverflow.com/questions/1767246/jquery-check-if-string-begins-with-something 0 jquery - check if string begins with something? n00b0101 2009-11-19T23:12:31Z 2009-11-19T23:15:03Z <p>I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a class for an element for pathnames that start in a certain way... </p> <p>So, </p> <pre><code>var pathname = window.location.pathname; //gives me /sub/1/train/yonks/459087 </code></pre> <p>I want to make sure that for every path that starts with /sub/1, I can set a class for an element... </p> <pre><code>if(pathname ^= '/sub/1') { //this didn't work... ... </code></pre> http://stackoverflow.com/questions/1381635/multiple-get-or-post-variables-404s-wordpress-pages-numeric-permalinks 0 Multiple GET or POST variables 404's wordpress pages (numeric permalinks) Kevin Stich 2009-09-04T21:31:10Z 2009-11-19T02:45:33Z <p>I am developing a live-action tag game (called DeTag) that uses a web interface for reporting kills. When a user wants to report a tag they go to a page to confirm who and when they tagged, then actually "kill" them (called pre-tag.php and tag.php respectively). However in trying both POST and GET data for the three variables I need (userID, tag hour and tag minute,) the page 404's. Here is the URL that I am using:</p> <pre><code>.../detag/kill?targetID=xxxxxxx&amp;hour=XX&amp;minute=XX </code></pre> <p>That will cause Wordpress (2.1.7) to 404. Tried using both POST and GET data. However, when I use this link (with only one GET variable):</p> <pre><code>.../detag/kill?targetID=xxxxxxx </code></pre> <p>It works...Of course, it doesn't push the time, but it goes through. Is there something in PHP and/or Wordpress that would create this situation?</p> <p>If you need more code, please let me know.</p> <p>I am using the runphp plugin to run php code on the Wordpress pages. Thanks.</p> http://stackoverflow.com/questions/1593903/reset-input-values-from-get-url-params-using-jquery 0 Reset input values from GET url params using jQuery Dycey 2009-10-20T11:18:30Z 2009-11-18T10:00:02Z <p>This may seem like an odd one, but I want to be able to fill in a static web form using values passed in via a GET param list.</p> <p>Say I have a page, 'self.html': </p> <pre><code>&lt;form action="self.html" method="get" accept-charset="utf-8"&gt; &lt;label for = "40"&gt;New Question?&lt;/label&gt; &lt;input type="radio" name="40" id="40" value="Yes"&gt; Yes &amp;nbsp; &lt;input type="radio" name="40" id="40" value="No"&gt; No &lt;label for = "41"&gt;What's your favourite colour?&lt;/label&gt; &lt;input type="text" name="43" value="" id="41"&gt; &lt;/form&gt; </code></pre> <p>I need the form to submit itself whenever an input changes:</p> <pre><code> $(document).ready(function(){ $('input').change(function(){ $("form:first").submit(); }); // collate_results(); }); </code></pre> <p>but obviously I want to keep the values, so that they're not reset on the reload.</p> <p>(Why? Because I'm doing it in a FileMaker web view, and the only way to pull data out of a form is to get the source - url - and parse it... hence I need to url to update to reflect the current state of the form, and also be able to pass in the data for any new records I want to display...)</p> <p>UPDATE:</p> <p>Here's my non-working code - it's fine single value fields, but fails for radio buttons...</p> <pre><code>$('input').change(function(){ $("form:first").submit(); }); var qString = jQuery.url.attr("query"); if(qString) { qString = qString.split("&amp;"); $(qString).each( function() { var parts = this.split("="); var item = $('#'+parts[0]); if($(item).attr('type') == 'text') { $('#'+parts[0]).val(parts[1]); }; if($(item).attr('type') == 'radio') { $(item).each(function() { console.log(this); if($(this).val() == parts[1]) { $(this).attr('checked','checked'); } else { $(this).attr('checked',''); } }); }; }) } }); </code></pre> <p>The problem is that I <em>will</em> have multiple radio buttons with values of yes, no, na on the form, so the way that jQuery wants to do it doesn't seem to apply. I can re-id the radio button if that helps...</p> <pre><code>&lt;form action="self.html" method="get" accept-charset="utf-8"&gt; &lt;label for = "40"&gt;New Question?&lt;/label&gt; &lt;input type="radio" name="47" id="47_yes" value="Yes"&gt;Yes &amp;nbsp; &lt;input type="radio" name="47" id="47_no" value="No" checked&gt; No &lt;label for = "48"&gt;What's your favourite colour?&lt;/label&gt; &lt;input type="text" name="48" value="" id="48"&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/1751300/not-using-get-parameters 0 Not using $_GET parameters John 2009-11-17T19:49:11Z 2009-11-18T02:40:07Z <p>In working with CodeIgniter, it appears $_GET is disabled by default. I'm wondering why this is.</p> <p>A lot of times, I want to build very long search queries. So for example, I have a form that allows you to search the database by N different fields. In code igniter, the url to display my search result would be:</p> <p><a href="http://mysite.com/field1/field2/field3/.../fieldN-1/fieldN" rel="nofollow">http://mysite.com/field1/field2/field3/.../fieldN-1/fieldN</a></p> <p>So an example url would be</p> <p><a href="http://mysite.com/shopping/toys/educational/age6-8/page1/sortbypriceinascendingorder/" rel="nofollow">http://mysite.com/shopping/toys/educational/age6-8/page1/sortbypriceinascendingorder/</a></p> <p>I don't particularly like this because:</p> <p>1) what if i want to add more search parameters at a later time such that we have something like:</p> <p><a href="http://mysite.com/shopping/toys/education/age6-8/page1/sortbypriceinascendingorder/boys-only/in-stock" rel="nofollow">http://mysite.com/shopping/toys/education/age6-8/page1/sortbypriceinascendingorder/boys-only/in-stock</a></p> <p>I don't like how I'm adding "boys-only" and "in-stock" at the end of the page/sortby segments of the url. It doesn't feel right.</p> <p>2) what if a person doesn't use the "toy" segment and "educational" segment? Then the url looks kind of clumsy</p> <p><a href="http://mysite.com/shopping/all%5Fproducts/all%5Fcategories/age6-8/page1/sortbypriceinascendingorder/" rel="nofollow">http://mysite.com/shopping/all%5Fproducts/all%5Fcategories/age6-8/page1/sortbypriceinascendingorder/</a></p> <p>Doesn't it make more sense to use $_GET parameters for search because then the order in which you place query string parameters (&amp;field=value) doesn't matter? And omitting a query string parameter automatically means "not selected".</p> http://stackoverflow.com/questions/1738223/get-text-uiwebview-php-script 0 Get Text UIWebView PHP script Bryan 2009-11-15T17:42:10Z 2009-11-15T20:17:08Z <p>Basically my app has a UIwebView which loads a php script with input of user data. The script then uses printf(some info). This all works and it prints it right the UIWebView. Basically what I want to do is get that text (its all thats on the page) and save it as a string. Heres what I have tried so far.</p> <pre><code>NSString *str = [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.innerHTML"]; // also used document.documentElement.innerText and outerHTML and some others none seem to work NSLog(@"%@",str); </code></pre> <p>it returns nothing How exactly should I do this. I assume its pretty simple I just need the correct text to put in evaulatingjavascriptfromstring. I just can't find out what I should put in.</p> <p>Thnx,</p> <p>Bryan </p> http://stackoverflow.com/questions/1730895/is-there-an-easy-way-to-get-characters-from-the-keyboard-without-hitting-enter-in 1 Is there an easy way to get characters from the keyboard without hitting enter in Java? Fred 2009-11-13T17:56:42Z 2009-11-13T18:23:16Z <p>I'd like to know if there is an easy way to get character input from a JTextField in Java as they happen, not after an enter keystroke.</p> <p>In my case I want the characters (text) to be read in, and when the enter key is hit, do something with the characters already collected.</p> http://stackoverflow.com/questions/1476419/what-is-the-best-way-to-auto-generate-getters-and-setters-for-a-class-in-php 0 What is the best way to auto generate getters and setters for a class in php? Kennethvr 2009-09-25T09:46:10Z 2009-11-13T02:41:01Z <p>I regularly create a class that has a few private variables. When an instance of this class is set, it should be possible to fill all variables of the class with getters and setters.</p> <p>Is there an easy way to do this without having to type all these setters and getters for each variable on creation of the class?</p> <p>now i have to type this for each var in the class</p> <pre><code>public function setVar($var){ $this-&gt;var = $var; } </code></pre> <p>and</p> <pre><code>public function getVar(){ return $this-&gt;var; } </code></pre> <p>We now use RegExp, but i don't know if this is the easiest way... We use Eclipse as environment, so perhaps there are some usefull plugins?</p> http://stackoverflow.com/questions/1722821/improve-http-get-php-scripts 0 Improve HTTP GET PHP scripts Alon 2009-11-12T15:02:13Z 2009-11-12T18:00:56Z <p>This code is getting the headers and content from $url, and prints it to the browser. It is really slow, and it's not because the server. How can I improve this?</p> <pre><code>$headers = get_headers($url); foreach ($headers as $value) header($value); $fh = fopen($url, "r"); fpassthru($fh); </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1573320/how-to-get-the-base-namespace-from-an-owl-ontology-file-in-java-with-jena 0 how to get the base namespace from an OWL ontology file in java with jena Dario 2009-10-15T15:58:52Z 2009-11-12T10:50:43Z <p>Hi, I'm new to Jena API's , I'm trying to figure out a way to get the base Namespace from a OWL ontology file, without using DOM or similar but just using the standard Jena's API. Is there such a way?? in an OWL file like</p> <p></p> <p>how do I get the base namespace "http://www.owl-ontologies.com/Ontology1254827934.owl" a runtime?? Many many thanks in advance!</p> http://stackoverflow.com/questions/1715379/jquery-ajax-or-get-doesnt-work-on-some-ie 0 Jquery Ajax or Get doesn't work on SOME IE Paulo Bueno 2009-11-11T14:07:22Z 2009-11-11T14:50:55Z <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function(){ function listadepoimentos(page){ // $.get("ajaxes.php", {act:'listadepoimentos', page:page}, function a(b){$('#holder').html(b)}, "text"); $.ajax({ type: 'GET', url: 'ajaxes.php', data: {act:'listadepoimentos', page:page}, success: function(data){ //alert(data); $('#holder').html(data); }, error: function(xhr, type, exception){ alert("Error: " + type); } }); } listadepoimentos(0); }); &lt;/script&gt; </code></pre> <p>It works fine on all browsers but SOME ie8. Yes, SOME. I've tried various ie8 browsers and in some of these it works, some not.</p> <p>Is there a reasonable answer?</p> http://stackoverflow.com/questions/1710546/redirect-on-get-subsequent-browser-refresh-returns-to-the-pre-redirect-script 0 Redirect on GET -- subsequent browser refresh returns to the pre-redirect script R_ 2009-11-10T19:28:13Z 2009-11-10T19:28:13Z <p>I'm using Apache/PHP and when I have an unexpected exception occur during a GET request -- for instance, on a search page where the user is querying for data and a database exception is thrown -- I am issuing a header("Location: errorPage.php"); exit(0);</p> <p>My browser correctly shows errorPage.php at this point and is displaying that page as expected. But when I hit the refresh button it runs the searchPage.php script again and changes the browser address back to the previous page.</p> <p>I'm baffled by this because I follow the Post/Redirect/Get pattern - <a href="http://en.wikipedia.org/wiki/Post/Redirect/Get" rel="nofollow">http://en.wikipedia.org/wiki/Post/Redirect/Get</a> - for my POSTs and I get the behavior I expect: If I POST and an exception is thrown I redirect to errorPage.php and all subsequent refreshes load errorPage directly; and if I hit the back button it returns to the page that initially issued the failed POST. The behavior for a successful POST is similar, as expected.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1709208/is-this-the-correct-form-for-outputcache 0 Is this the correct form for OutputCache? Matt W 2009-11-10T16:24:16Z 2009-11-10T16:24:16Z <p>I'm currently using this directive:</p> <pre><code>&lt;%@ OutputCache Duration="36000" VaryByParam="none" %&gt; </code></pre> <p>in the (previous) belief that it would cause my page to output cache per different URL.</p> <p>However, now I see each call to the page firing the events within the page, even after a straight GET request followed by an immediate browser refresh.</p> <p>I only have GET requests being sent to the page in particular, so how do I get it to output cache the page, no matter what form the GET URL is?</p> <p>Thanks,</p> <p>Matt.</p> http://stackoverflow.com/questions/1704559/calling-javascript-in-a-page-after-its-been-loaded-by-jquery-get 0 Calling Javascript in a page after it's been loaded by jQuery GET Andy 2009-11-09T23:04:31Z 2009-11-10T08:37:36Z <p>Imagine a normal page calling javscript in head. The trouble is some of the content isnt loaded untill i click on a link. Subsequently when this link loads the content it wont work. This is because i guess the javascript has already been run and therefor doesnt attach itself to those elements called later on. There is only standard html being called.</p> <p>So for example this is the code which calls my external html.</p> <pre><code>$.get('content.inc.php', {id:id}, function(data){ $('#feature').children().fadeTo('fast', 0).parent().slideUp('slow', function(){ $(this).html(data).slideDown('slow'); }); }); </code></pre> <p>If the html i was calling for example and H1 tag was already in the page the cufon would work. However because i am loading the content via the above method H1 tags will not be changed with my chosen font.This is only an example. The same will apply for any javascript.</p> <p>I was wonering whether there is a way around this without calling the the javascript as well the html when its received from the above funtion</p> http://stackoverflow.com/questions/1695372/massive-api-framework-mashup-issue-oauth-facebook-twitter-code-igniter 0 Massive API/Framework mashup issue (oAuth, Facebook, Twitter, Code Igniter) Alex Mcp 2009-11-08T04:29:40Z 2009-11-09T22:23:23Z <p>Hi all,</p> <p>I'm having (many, but for now,) one problem with a project I'm working on.</p> <ol> <li>It is a PHP project run on Code Igniter</li> <li>It is a Facebook app that wants to use oAuth Twitter authorization</li> </ol> <p>CodeIgniter by default clears the $_GET array because it uses the URI for controlling MVC stuff. You can turn this off to access the GET array, and use a string like <code>example.com/?c=MyController&amp;m=MyMethod</code> to get around this. </p> <p>Facebook asks you to define a root url for you application page. This means that for me: </p> <pre><code>apps.facebook.com/MyApplication == http://www.myownserver.com/index.php/c=SignIn&amp; </code></pre> <p>I have it set up this way so that it can use the $_GET array. When Twitter (and I assume any other implementation) uses oAuth, it passes back to whatever URL you want with the <code>?token=250937602736037609273609327</code> appended onto the end, so I end up at </p> <pre><code>app.facebook.com/MyApplication/?token=302870637602746094276097 </code></pre> <p>which looks right, but is in fact equivalent to </p> <pre><code>http://www.myownserver.com/index.php/c=SignIn&amp;?token=302870637602746094276097 </code></pre> <p>So the problem is that you can't have two question marks in the URL; the second needs to be an ampersand (&amp;) to string more values together. The error message is a predictable <code>Disallowed Key Characters.</code></p> <p>Can anyone thing of a good/clever way to get around this issue I'm having? I really don't want to dump the CodeIgniter part of this setup because it has a great DB abstraction and good helpers that I've already written a good bit of code on.</p> <p>Thanks for any suggestions.</p> http://stackoverflow.com/questions/1702432/how-to-pass-an-array 3 How to pass an array? Gero 2009-11-09T17:17:33Z 2009-11-09T17:23:40Z <p>Hello!</p> <p>How could I pass an array with PHP by GET method?</p> <p>Thanks</p> http://stackoverflow.com/questions/1354048/issue-with-jquery-get-in-ie 0 Issue with jQuery $.get() in IE Eric 2009-08-30T14:57:52Z 2009-11-08T17:02:39Z <p>Hi! I am working on a small chat application that uses jQuery to get some info from a PHP file. The output of the file is a whole bunch of HTML data.</p> <p>The script works just fine in FF but not in Internet (f***ing) Explorer, lol. The code looks like this:</p> <pre><code>$.get("index.php", {p: "chatData", type: "regular"}, function(data){ startPoint = data.indexOf("|START-POINT|"); endPoint = data.indexOf("|END-POINT|"); dataReturn = data.substring(startPoint, endPoint); }); </code></pre> <p>The thing is, that I have to access some SESSION variables inside my chatData.php file. Therefore I call index.php with p-varable, that includes chatData.php into my index.php file where the SESSION variables is set. This is maybe not the best sollution, but I couldn't think of another way to access the SESSION variables. Anyway.</p> <p>But when I'm doing like this, the callback will contain all html from index.php as well, but I only want the data from chatData.php, so therefore I put these start- and endPoints into the code, so it can do substring and get the desired data that way. Same thing here, maybe not the best sollution...</p> <p><strong>But now the issue!</strong> The callback data only contains the html from index.php, it sould be the index.php html + the chatData html... But I think the issue lies in this index.php inclusion, because if I call the file like usual, I will get the data (tho, as I said, I need the SESSION variables from index.php as well...).</p> <p>So why doesn't this work in IE, but just fine in other broswers such as FF ?</p> <p><strong>EDIT:</strong> The problem is solved. The problem was my START-POINTS in my php file, they were wrongly placed... Sorry about that noobish misstake. Thank yuo anyway!</p> http://stackoverflow.com/questions/1694690/are-these-jquery-calls-the-same 1 Are these JQuery calls the same? Matt W 2009-11-07T22:41:04Z 2009-11-08T00:04:54Z <p>Hi guys,</p> <p>Could someone tell me if this:</p> <pre><code> $.ajax({ url: 'test.html', success: function(data) { alert("Data Loaded: " + data); } }); </code></pre> <p>is the same as this:</p> <pre><code> $.ajax({ url: 'test.html', success: function(data) { alert("Data Loaded: " + $(data).html()); } }); </code></pre> <p>When retrieving this content:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;blank page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="content"&gt;Some content.&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>I ask because the second jquery ajax call does not alert. Could someone explain why the two versions of the alerts are not the same please?</p> <p>Matt.</p>