Tagged Questions
0
votes
1answer
20 views
Getting a part of URL in apache
I have set wildcard vhosts in my apache like
<VirtualHost *>
ServerName wildcard.test.com
ServerAlias *.test.com
DocumentRoot = /var/www/test
# other configuration for this app here
...
0
votes
1answer
49 views
PHP: How to find occurrence of a * wildcard character in a string
Maybe I'm asking a bit too banal question, but I really cannot figure out how to check for an occurrence of a wildcard (*) character in a string using PHP.
An example string: *bcd OR ab*d OR abc*
...
0
votes
1answer
36 views
SQL wildcard charlist using PHP PDO statement
I created a form that will send the value of search range to the database, but it seems not to be working.
The query:
$alpha = $_POST['alpha'];
$sql = "SELECT * FROM tbl_members WHERE resultselect=? ...
0
votes
1answer
29 views
Wild card in PHP value equal parameter
In SQL there is the LIKE parameter that you can put in to have a wild card for values such as: LIKE %value%. How would I be able to do that with, say, a PHP if statement?
$value = "value-";
$post = ...
0
votes
1answer
39 views
Symfony 2 optional route url parts (wildcard?)
In Symfony 2.2.1 Is it possible to create route like:
/search/category_ids/1,2,3,4/subcategory_ids/32,23,9/language_ids/10,23,5 ...
where every url part is optional, for example user could visit ...
0
votes
1answer
36 views
Matching prefixes for list of words with mysql DB
My goal is to avoid queries that tries to match wildcards because it is X100 times slower than queries that match prefix with a wildcard followed.
For a single word it is not a problem, but what if i ...
1
vote
2answers
52 views
Cannot figure out this wildcard subdomain mishap
I've been trying to accomplish this for hours now and for some reason it does not want to work.
All I want is username.domain.com to internally go to domain.com/users/username
I set-up my dns that ...
1
vote
2answers
46 views
wildcards in php for email check function
i am currently developing login and register system on my local machine for test purposes and, now, i am in phase of email checking function. as you know, you can use php build in function for that, ...
0
votes
2answers
84 views
MySQL Query with variable wildcards
If I execute my PHP code:
$serName = $_GET['username'];
// Code for sanitation here
// [...]
$sql = "SELECT NAME FROM PLAYERS WHERE NAME LIKE '%$serName%'";
I get division error, how do I use a ...
0
votes
1answer
52 views
Regular search works but when I try to add a Wildcard in the mix, no result
So I have successfully created a search box where it is linked to my MS Database and it returns a search, but I am running into some problems right now when I try to implement Wildcard into the query. ...
3
votes
1answer
120 views
Is a mysql LIKE statement with an escaped string containing unescaped wildcards '%' (percent) or '_' (underscore) vulnerable?
Let's say we have the following code (for some kind of search or similar):
$stmt = $pdo->prepare("SELECT * FROM users WHERE username LIKE ?");
$stmt->execute(array('%' . $username . '%'));
...
1
vote
5answers
117 views
Matching string with shell-style wildcards (e.g., *)
Is it possible to use a wildcard in an if statement?
My code:
* = wildcard
if ($admin =='*@some.text.here') {
}
$admin will be one of these:
xvilo@some.text.here
bot!bot@some.text.here
...
0
votes
3answers
115 views
MySQL LIKE operators & wildcards
I've been reading tutorials and have learned nothing new. I have a table of customers. The customer's first and last names are stored in separate columns. I want to write a query that can search for ...
3
votes
2answers
128 views
Using mod-Rewrite with 5 pages (wildcard sub-domain)
Let's say I got 5 pages (index.php, about.php, portfolio.php, gallery.php, contact.php).
Let's say the id is 1.
The original url is :
www.domain.com/folder/index.php?id=1,
...
0
votes
1answer
93 views
Using mod-rewrite with multiple pages
Simplified Question
I changed domain.com/folder/client.php?id=1 to 1.domain.com with this .htaccess code
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
...
0
votes
0answers
54 views
Creating SQL query dependent on factors in PHP
Hi ive been stuck on this method for a while now.
Passing values from Android to PHP to interface with a database. There may or may not be factors passed through to the method (e.g. $baseLocation may ...
-1
votes
4answers
152 views
mysql - select email from xyz where email=“%gmail.com”
Is there a way I can select from the database the entries with certain data? I got a lot of email addresses in the database but I want to select only from one domain. Is it even possible?
0
votes
1answer
137 views
multiple text replace inside a string, while keeping the selected variable
I have a web script that creates a HTML page into a PHP string, then delivers it to the user. All of the pages are generated by index.php, with a unique url.
domain.host.com/index.php?loadpage=/BLAH
...
1
vote
1answer
84 views
PHP - Wildcards in URI string
I am trying to create an API request handler that can read wildcards in a string. The ideal situation is something like this.
$myClass->httpGet('/account/[account_id]/list-prefs', function ...
1
vote
4answers
335 views
PHP mysql select query where (wildcard)
I'm trying to use the following MySQL query, but there is obviously something wrong. I'm trying to make page.php or page.php?q= return the following query:
if (!isset($_GET['q'])) { $where = "WHERE ...
0
votes
2answers
409 views
Simple HTML DOM wildcard in attribute
I have the following tags
<div class="col *">Text</div>
* is anything.
I want to get all div tag with class attribute contains col (as in my example) using Simple HTML DOM.
I've been ...
4
votes
3answers
2k views
Laravel - Using (:any?) wildcard for ALL routes?
So, i'm having a bit of trouble with the routing.
I'm working on a CMS, and i need two primary routes. /admin and /(:any). The admin controller is used for the route /admin, and the view controller ...
2
votes
0answers
158 views
mod_vhost_alias + wildcard + custom php.ini
Here's my httpd.conf thats using mod_vhost_alias.
The docroot is always in /home/username/domains/domainname/public_html.
<VirtualHost *:80>
ServerName *.abc.com
ServerAlias ...
0
votes
1answer
153 views
PHP: Regex for Matching URLs with a Certain Pattern and One Optional Wildcard
maybe this question has already been answered somewhere on this site, but I'm not sure, because I'm very bad at regex. In fact, my question is very very basic, I guess.
I need to check if an URL ...
1
vote
1answer
143 views
Selecting IP's with wildcards from MySQL database using PHP
I'm trying to execute Javascript on clients browsers based on what their IP address is. I've got a table of user info, like their name, and another table that has IP's and what Javascript gets ...
1
vote
2answers
513 views
MySQL Query from HTML form - can an input use wildcards?
I've had a look, and while I've seen lots of explanations for using wildcards in the original PHP, I've not found anything to help me when the user input wants to use wildcards. I am very new to PHP ...
0
votes
1answer
54 views
How to do this string replacement in PHP
I have a string and within that string are some links of the format
<a href="...some url...">Text</a>
I want to replace that entire section with a different piece of markup
The problem ...
0
votes
1answer
76 views
How do to a php wildcard replace on a urlencoded field
I have several encoded fields that look like this:
317+NALON++RD%2C%2BGananoque%2C%2BOntario%2C%2BCanada
The easy part is replacing the "+" with a space.
My challenge is replacing the "%2C" or ...
0
votes
2answers
188 views
php wildcard search for mixed string with a file path and details
In my php program i need to search a mixed string having a file path and some details about it with a pattern with or without wildcards, if this pattern matches with the string then it should return ...
0
votes
1answer
337 views
How do you use a single character PHP Wildcard to make a String Replacement?
How do you use a single character PHP Wildcard to make a String Replacement?
I need to make a string replacement in the following lines of code:
<img src="http://mydomain.com/image-1.jpg" ...
3
votes
6answers
736 views
If current page URL equals X OR X?
I found this code on the internetz, it checks the current page url;
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ...
1
vote
2answers
186 views
MySQL Search w/ Ordered Wildcards, and Extracting Their Values
Is it possible to do a wildcard search, and extract the values of the wildcards and put them into a MySQL result? Preferably, I'd also like to label the wildcards. Continue reading to see what I mean.
...
4
votes
2answers
112 views
Can mod_rewrite find a variable within an URL, replace a portion before it, delete the variable and preserve what remains?
I've looked around but frankly I am not sure of the lingo I need to be searching with to get more exacting results. Heck, I am struggling with url vs. uri vs. page vs. link and what each is and isn't. ...
0
votes
1answer
195 views
Remove links to urls with certin suffix PHP wildcard
Need to copy and paste large body of text and it's filled with
<a href="default.asp?contentID=XXX">xxx</a>
Looking for a way to remove all links with the path "deafult.asp?.........."
I ...
4
votes
3answers
205 views
questions about mysql_real_escape_string
I'm developing my personal web site using php. everything is ok but I just read mysql_real_escape_string manual in php.net and found two things:
This function must always (with few exceptions) ...
2
votes
3answers
261 views
Using question mark in CodeIgniter routing
I need to change
http://mysite.com/profile?username=nick
to
http://mysite.com/user/nick
with CodeIgniter routing. I add the following line to routes.php but it doesn't work:
...
0
votes
3answers
277 views
How to search a column using a wildcard keyword, where the columns values have more than one word
I have created a search bar for my website, the user may search a specific category, man or woman etc by a selecting this option from a drop down menu, then entering in a keyword which searches ...
0
votes
1answer
117 views
CNAME based php hosting
I have an application that lets users get a *.onemobi.net account (ex. bob.onemobi.net). Now what I would like to do is give the user the option of being able to use their own subdomain to point to ...
2
votes
1answer
534 views
Is Flexigrid wildcard search possible in the “quick search”?
Flexigrid is a nice jQuery grid, and pretty customizable, but the quick search feature only allows for exact searches (as far as I can tell). Anybody know a fix or workaround for this? I've tried ...
-1
votes
1answer
102 views
php post remote wildcard filename
I need my php script to look on a remote http server (I'm assuming via fopen) and it needs to find this unique filename if it exists. If it does exist, I need it to display. But this remote filename ...
2
votes
1answer
332 views
return all results in mysql/sql using format where equals wildcard
how do I put together an sql that will return ALL values with a wild card
example:
WHERE fieldname = 'ALL'
I tried the wild card % and the * and none of them worked.
I know I can do a query ...
0
votes
2answers
223 views
WordPress delete_option(); Wildcard capability?
How would one go about deleting all option names in a WordPress database beginning with a specific prefix?
I would assume we need to specify a prefix, get all options that begin with that prefix, and ...
0
votes
1answer
353 views
wildcard subdomain in .htaccess
I want to make a simple page which is available with any (wildcard) subdomain.
For example, you visit hello.domain2.com and the page will echo the name of the subdomain "hello". Also the URL has to ...
0
votes
1answer
57 views
Comparing 2 tables with wildcards
I need to compare 2 tables, where one has the data and the other one has the explanation.
So the data table looks like this:
id | state | substate | stage | suppressed
001 wip A1 B3 ...
0
votes
1answer
1k views
SOLR “LIKE” query syntax for non-string data type
I've a problem with my query SOLR syntax. On admin page, I've tried to use this query
description:*home*
and the result is all doc that contain "home" word in the description field.
but, when I ...
1
vote
1answer
895 views
Wildcards in array search
Is is possible to use wildcards with array_search? I want to search for part of a string and then
something like(with an asterisk)
print $pos = array_search('abitofastring%', $vars['myarray']);
...
0
votes
3answers
912 views
Simplifying mysql filter query
I'm building a platform for a casting manager to catalog Actors and be able to browse them. My table 'actor' is set up with first name, last name, email, phone, address etc.
I have a browse.php page ...
0
votes
5answers
809 views
How can I create an SQL table name with spaces and wildcard characters in a MySQL table?
I am looking for a way to store a value with spaces and wildcard characters in a MySQL table. How can this be done? I have tried using mysql_real_escape_string but for some reason it still won't ...
2
votes
5answers
213 views
Can I unset with wildcard?
Can I unset with wildcard?
I have a bunch of $_SESSION variables which all start with the same prefix. Rather than explicitly unset all, can I use a wildcard?
(the prefix remains the same, but ...
1
vote
2answers
368 views
MySQL Wildcard on Field Value?
I'm trying to build a simple system for translating some values before they are outputted in a file for users. Let's say I have the text: 'Method (aaaabbbccc - random text)', I'm trying to let the ...


