我正在为学校项目开发一个应用程序。所以我会尝试以正确的方式解释:
我有一个php脚本,允许用户在MYSQL表中搜索一些关键字,代码如下:
<?php
//get data
$button = $_GET['submit'];
$search = $_GET['search'];
$s = $_GET['s'];
if (!$s)
$s = 0;
$e = 10; // Just change to how many results you want per page
$next = $s + $e;
$prev = $s - $e;
if (strlen($search)<=2)
echo "Must be greater then 3 chars";
else
{
echo "<br /><table><tr><td><img src='juzzy.jpg' /></td><td><form action='search.php' method='GET'><input type='text' onclick=value='' size='50' name='search' value='$search'> <input type='submit' name='submit' value='Search'></form></td></tr></table>";
//connect to database
mysql_connect("localhost","root","root");
mysql_select_db("content");
//explode out search term
$search_exploded = explode(" ",$search);
foreach($search_exploded as $search_each)
{
//construct query
$x++;
if ($x==1)
$construct .= "keywords LIKE '%$search_each%'";
else
$construct .= " OR keywords LIKE '%$search_each%'";
}
//echo outconstruct
$constructx = "SELECT * FROM searchengine WHERE $construct";
$construct = "SELECT * FROM searchengine WHERE $construct LIMIT $s,$e";
$run = mysql_query($constructx);
$foundnum = mysql_num_rows($run);
$run_two = mysql_query("$construct");
if ($foundnum==0)
echo "No results found for <b>$search</b>";
else
{
echo "<table bgcolor='#0000FF' width='100%' height='1px'><br /></table><table bgcolor='#f0f7f9' width='100%' height='10px'><tr><td><div align='right'>Showing 1-10 of <b>$foundnum</b> results found for <b>$search.</b></div></td></tr></table><p>";
while ($runrows = mysql_fetch_assoc($run_two))
{
//get data
$title = $runrows['title'];
$desc = $runrows['description'];
$url = $runrows['url'];
echo "<table width='300px'>
<h4><a href='http://$url'><b>$title</b></a><br />
$desc<br>
<font color='00CC00'>$url</font></table></h4>
";
}
?>
<table width='100%'>
<tr>
<td>
<div align="center">
<?php
if (!$s<=0)
echo "<a href='search.php?search=$search&s=$prev'>Prev</a>";
$i =1;
for ($x=0;$x<$foundnum;$x=$x+$e)
{
echo " <a href='search.php?search=$search&s=$x'>$i</a> ";
$i++;
}
if ($s<$foundnum-$e)
echo "<a href='search.php?search=$search&s=$next'>Next</a>";
}
}
?>
</div>
</td>
</tr>
</table>
所以我需要整合这个代码和一个iPhone应用程序,我已经构建了执行查询,它的吼叫:
-(IBAction)executeQuery:(id)sender{
NSString *encodedValue = [queryValue.text stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *cont11 = [NSString stringWithFormat:@"http://localhost:8888/searchengine/searchengine/search.php?search=%@",encodedValue];
NSData *cont12 = [NSData dataWithContentsOfURL:[NSURL URLWithString:cont11]];
NSString *cont13 = [[[NSString alloc] initWithData:cont12 encoding:NSUTF8StringEncoding]autorelease];
NSLog(@"%@", cont13);
[queryValue resignFirstResponder];
}
那么应用程序是如何工作的,
我的问题是:
如何执行查询并显示结果(在IOS应用程序上)?
答案 0 :(得分:1)
您可能不应该使用表格和链接等将数据作为HTML发送,而是使用易于处理程序的不同格式,例如JSON或XML。
我会选择JSON。使用json_encode()
,您可以对整个查询结果集进行编码。 iPhone应用程序下载并解码它。
关于现在在iOS方面发生的事情:其他人需要在这里讨论,我不会进入iOS开发。
答案 1 :(得分:0)
在middus上构建'(我同意JSON)...你需要在项目中添加一些JSON解析器,我使用SBJSON。因此,您将输出格式化为JSON(如果需要指导,则为json.org),它将(在最高级别)数组或等效字典。要转换它,你会做
self.myReturnedData = [cont13 JSONValue];
我假设你已将myReturnedData设置为属性,它将是NSDictionary或NSArray
然后,你可以设置你想要的任何UI元素的文本...因为它很多,我会投票给UITableView,如:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return 10;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexpath{
return 52;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *TaskCellIdentifier = @"ResultCellIdentifier";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:ResultCellIdentifier];
if(cell==nil){
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:ResultCellIdentifier]autorelease];
UILabel *label;
//you'll need to adjust the following numbers to position as you wish
label = [[UILabel alloc] initWithFrame:CGRectMake(50, 5, 200, 23)];
label.textAlignment = UITextAlignmentLeft;
label.tag=999;
label.font=[UIFont systemFontOfSize:20];
[cell.contentView addSubview:label];
[label release];
}
UILabel *label = (UILabel *)[cell viewWithTag:999];
label.text=[NSString stringWithFormat:@"%@",[self.myReturnedData objectAtIndex:indexPath.row]];
return cell;
}
-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
return NO;
}
但是,您可能还想添加一些按钮或其他东西进行分页