GVKun编程网logo

PHP echo / print从数组更改文本字体颜色(php数组变成字符串)

3

本篇文章给大家谈谈PHPecho/print从数组更改文本字体颜色,以及php数组变成字符串的知识点,同时本文还将给你拓展$.post(''index.php?act=q&openid='',{''q

本篇文章给大家谈谈PHP echo / print从数组更改文本字体颜色,以及php数组变成字符串的知识点,同时本文还将给你拓展$.post(''index.php?act=q&openid='',{''qnumber'':qNumber},functi、$.post(''index.php?act=q&openid=''{''qnumber''qNumber},functi,该怎么处理、000Webhost PHP File echo 的错误答案、等相关知识,希望对各位有所帮助,不要忘了收藏本站喔。

本文目录一览:

PHP echo / print从数组更改文本字体颜色(php数组变成字符串)

PHP echo / print从数组更改文本字体颜色(php数组变成字符串)

如何解决PHP echo / print从数组更改文本字体颜色

嗨,我在从数组中更改字体颜色时遇到了小问题,可以正常打印。

<?PHP print $Pobierz_wsyzstkie [1]; ?>
<?PHP echo $Pobierz_wsyzstkie [3]; ?>

这很好,写出他们应该写的。但是,如果我尝试使用以下代码为数组输出着色:

   <?PHP echo "<spancolor:blue;''>$Pobierz_wsyzstkie 
   [3]</span>"; ?>

我得到彩色文本,但不是数组中的文本,它显示“ Array [3]”。

解决方法

这样写(注意引号和点分开并连接PHP和HTML字符串输出):

<?php echo "<spancolor:blue;''>".$Pobierz_wsyzstkie[3]."</span>"; ?>
,

变量和方括号之间有一个空格。这是问题的直接原因。另外,在字符串中正确连接变量。

在这里;

<?php 
   echo "<spancolor:blue;''>".$Pobierz_wsyzstkie[3]."</span>";
?>

最佳做法:

  • PHP打开和关闭标记应位于其自己的行上。
  • 数组引用(键)和它们的数组变量名称之间不应有空格($Pobierz_wsyzstkie[3]不能为“” $ Pobierz_wsyzstkie [3]“)
  • 了解正确的PHP String Concatenation。
  • PHP变量($Pobierz_wsyzstkie)应该以小写字母开头。
  • CSS样式不应该是内联的,而应该在它们自己的CSS文件中。

$.post(''index.php?act=q&openid=<?php echo $openid;?>'',{''qnumber'':qNumber},functi

$.post(''index.php?act=q&openid='',{''qnumber'':qNumber},functi

$.post(''index.php?act=q&openid='',{''qnumber'':qNumber},function(data){},''json'');其中的index.php就是当前页面吗?还是提交JSON的那个页面?


回复讨论(解决方案)

index.php 应该就是当前页面
但对于初学者来说,最好不要是当前页面
因为 ajax 需要处理返回的数据,尤其是你还要求返回 json
这种情况下,php 处理程序不分开的话,很容易达不到要求

你的index.php应该是个入口文件,根据act分发到子页面来出来你的post数据

index.php是一定提交的页面。
但也可能是当前页面。因为可以提交给自己的。
建议改其他较好,这样容易排错。

$.post(''index.php?act=q&openid=<php echo $openid;>''{''qnumber''qNumber},functi,该怎么处理

$.post(''index.php?act=q&openid=''{''qnumber''qNumber},functi,该怎么处理

$.post(''index.php?act=q&openid='',{''qnumber'':qNumber},functi
$.post(''index.php?act=q&openid='',{''qnumber'':qNumber},function(data){},''json'');其中的index.php就是当前页面吗?还是提交JSON的那个页面?
------解决思路----------------------
你的index.php应该是个入口文件,根据act分发到子页面来出来你的post数据
------解决思路----------------------
index.php是一定提交的页面。
但也可能是当前页面。因为可以提交给自己的。
建议改其他较好,这样容易排错。

000Webhost PHP File echo 的错误答案

000Webhost PHP File echo 的错误答案

如何解决000Webhost PHP File echo 的错误答案

我正在使用免费的 000Webhost,因为创建游戏只是一种爱好,所以我现在不想为好的 Webhoster 付费,但仍然解决问题。

问题是我正在使用这个脚本来获取我的私人 Nas 上的前 3 名球员和得分,这非常有效,但现在它的行为很奇怪。

<?PHP:include_once("config.PHP");

    $con = config ::connect();
    $gettopquery = "
    SELECT username,highscore FROM players 
    GROUP BY username ORDER BY highscore DESC
    ";
    $stmt=$con->prepare($gettopquery);
    $stmt->execute();

    $scores = $stmt->fetchAll();
    $response = "0";
    echo $response."/".$scores[0][0]."|".$scores[0][1]."/".$scores[1][0]."|".$scores[1][1]."/".$scores[2][0]."|".$scores[2][1];

    die();
?>

作为网站上的回声,我得到了:

Picture of Echo from PHP file

我使用此代码连接到数据库其他需要连接到数据库的脚本工作正常:

<?PHP

    class config{

        public static function connect()
        {
            //Declare details to log in to DB
            $host ="localhost";
            $username = "Something is here";
            $password = "Not your concerne";
            $dbname = "I really have something here in the real script";
            //Connect to DB
            try{
                $con = new PDO("MysqL:host=$host;dbname=$dbname;charset=utf8",$username,$password);
                $con->setAttribute(PDO::ATTR_EMULATE_PREPARES,false);
                $con->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_WARNING);
            }
            //When unsuccessful return connection error code 1
            catch(PDOException $e)
            {
                $response = "1";
                echo $response;
                die();  
            }
            return $con;
        }
    }
?>

所以如果有人知道这是什么原因,请告诉我。我明天有一个截止日期,如果我能在这次演讲中宣布他们可以下载我的应用,那就太棒了。

解决方法

尝试更改此行:

<?php:include_once("config.php");

<?php

include_once("config.php");

<input type=


这句话是什么意思呢?

还有这句话,  







为什么用input 前面有加from, class 是什么意思?谢谢大家

------解决方案--------------------
form是表单,class是css里的那个
------解决方案--------------------
form是要将数据提交到服务器。class是在该标签元素中添加的css样式。
多看看手册http://download.csdn.net/detail/dmtnewtons/4126616
------解决方案--------------------
一切从零开始,建议你先看看
http://www.w3school.com.cn/h.asp
书太贵,也没必要买!
------解决方案--------------------
楼主又在问同样的问题。

今天关于PHP echo / print从数组更改文本字体颜色php数组变成字符串的分享就到这里,希望大家有所收获,若想了解更多关于$.post(''index.php?act=q&openid='',{''qnumber'':qNumber},functi、$.post(''index.php?act=q&openid=''{''qnumber''qNumber},functi,该怎么处理、000Webhost PHP File echo 的错误答案、等相关知识,可以在本站进行查询。

本文标签: